From 4b00acacfe64eee38d5b440338516b69cc889d8a Mon Sep 17 00:00:00 2001 From: Thomas VINCENT Date: Wed, 19 Jul 2023 13:18:23 +0200 Subject: [PATCH] Remove setuptools from `install_requires` dependencies --- requirements.txt | 9 ++++++--- setup.py | 2 -- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/requirements.txt b/requirements.txt index 0ea207765f..d69c7037a0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,11 +5,14 @@ --find-links http://www.silx.org/pub/wheelhouse/ --only-binary numpy,h5py,scipy,PyQt5,PySide6,PyQt6 -# Required dependencies (from setup.py setup_requires and install_requires) -numpy >= 1.12 -packaging +# Required dependencies +# From pyproject.toml +wheel setuptools +numpy >= 1.12 Cython >= 0.21.1 +# From setup.py install_requires +packaging h5py fabio >= 0.9 diff --git a/setup.py b/setup.py index 2a68f516d1..14e1c37443 100644 --- a/setup.py +++ b/setup.py @@ -165,8 +165,6 @@ def get_project_configuration(): "numpy%s" % numpy_requested_version, # for version parsing "packaging", - # for the script launcher - "setuptools", # for io support "h5py", "fabio>=0.9",