diff options
| author | Ralf Gommers <ralf.gommers@gmail.com> | 2021-11-26 15:52:44 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-26 15:52:44 +0100 |
| commit | 82cc0fbeb8aa65bddc29d36e3ddf49ec212a3243 (patch) | |
| tree | b45417f07335f81534363287a3a96e61a785df3f | |
| parent | 71eb742cad010623ec77931b118550605f475add (diff) | |
| parent | 1adb70d990495c392741d9de8b77510c4b20ffcc (diff) | |
| download | numpy-82cc0fbeb8aa65bddc29d36e3ddf49ec212a3243.tar.gz | |
Merge pull request #20452 from charris/update-setuptools-version
MAINT: Update the required setuptools version.
| -rw-r--r-- | environment.yml | 2 | ||||
| -rw-r--r-- | pyproject.toml | 2 | ||||
| -rw-r--r-- | test_requirements.txt | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/environment.yml b/environment.yml index 1bc8b44a7..701f7d46c 100644 --- a/environment.yml +++ b/environment.yml @@ -12,7 +12,7 @@ dependencies: - compilers - openblas - nomkl - - setuptools=58.4 + - setuptools=59.2.0 # For testing - pytest - pytest-cov diff --git a/pyproject.toml b/pyproject.toml index 941c8fa8c..3b4d8fede 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ # Minimum requirements for the build system to execute. requires = [ "packaging==20.5; platform_machine=='arm64'", # macos M1 - "setuptools<49.2.0", + "setuptools==59.2.0", "wheel==0.36.2", "Cython>=0.29.24,<3.0", # Note: keep in sync with tools/cythonize.py ] diff --git a/test_requirements.txt b/test_requirements.txt index 256b26d9b..f56f9a5a1 100644 --- a/test_requirements.txt +++ b/test_requirements.txt @@ -1,6 +1,6 @@ cython==0.29.24 wheel<0.37.1 -setuptools<49.2.0 +setuptools==59.2.0 hypothesis==6.24.1 pytest==6.2.5 pytz==2021.3 |
