Skip to content

Commit 6d5e1c9

Browse files
committed
MNT: Drop tests_require, since setup.py test is deprecated and we misspelled it anyway
1 parent 94de69a commit 6d5e1c9

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

setup.cfg

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,6 @@ description = TODO
1010
python_requires = >=3.7
1111
install_requires =
1212
pydra >= 0.6.2
13-
14-
test_requires =
15-
pytest >= 4.4.0
16-
pytest-cov
17-
pytest-env
18-
pytest-xdist
19-
pytest-rerunfailures
20-
codecov
21-
2213
packages = find_namespace:
2314

2415
[options.packages.find]

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@
88

99
# Give setuptools a hint to complain if it's too old a version
1010
# 30.3.0 allows us to put most metadata in setup.cfg
11+
# 40.1.0 enables the `find_namespace:` directive
1112
# Should match pyproject.toml
12-
SETUP_REQUIRES = ["setuptools >= 30.3.0"]
13+
SETUP_REQUIRES = ["setuptools >= 40.1.0"]
1314
# This enables setuptools to install wheel on-the-fly
1415
SETUP_REQUIRES += ["wheel"] if "bdist_wheel" in sys.argv else []
1516

0 commit comments

Comments
 (0)