diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2021-11-29 18:03:13 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-29 18:03:13 -0700 |
commit | 4906ce81d34cfd3d9c8c91c5d5cb2bb7a3107b2d (patch) | |
tree | 872bdc840c5b348b0436571f5a52ebf76ed377e3 | |
parent | c8fdb53ee2d1b1130a74ad7a3250366fd042da3f (diff) | |
parent | 8220068e1a2fc857b65dc38c6e721605b8ca6419 (diff) | |
download | numpy-4906ce81d34cfd3d9c8c91c5d5cb2bb7a3107b2d.tar.gz |
Merge pull request #20486 from mattip/update-wheel
MAINT: update wheel to version that supports python3.10
-rw-r--r-- | pyproject.toml | 2 | ||||
-rw-r--r-- | test_requirements.txt | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/pyproject.toml b/pyproject.toml index 3b4d8fede..39d6fcd98 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "packaging==20.5; platform_machine=='arm64'", # macos M1 "setuptools==59.2.0", - "wheel==0.36.2", + "wheel==0.37.0", "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 f56f9a5a1..9532e3346 100644 --- a/test_requirements.txt +++ b/test_requirements.txt @@ -1,11 +1,10 @@ cython==0.29.24 -wheel<0.37.1 +wheel==0.37.0 setuptools==59.2.0 hypothesis==6.24.1 pytest==6.2.5 pytz==2021.3 pytest-cov==3.0.0 -pickle5; python_version == '3.7' and platform_python_implementation != 'PyPy' # for numpy.random.test.test_extending cffi; python_version < '3.10' # For testing types. Notes on the restrictions: |