diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2020-12-02 13:35:57 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2020-12-02 13:35:57 -0700 |
commit | 88be44bacffeb336317e51c5199e1ef6e41ee183 (patch) | |
tree | e97d381e537423516f49e5a4bc996c32071d2efb /test_requirements.txt | |
parent | 33dc7bea24f1ab6c47047b49521e732caeb485d5 (diff) | |
download | numpy-88be44bacffeb336317e51c5199e1ef6e41ee183.tar.gz |
MAINT: Remove remaining uses of Python 3.6.
We missed a few first time around.
Diffstat (limited to 'test_requirements.txt')
-rw-r--r-- | test_requirements.txt | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test_requirements.txt b/test_requirements.txt index 97d06a0cf..9c94abf91 100644 --- a/test_requirements.txt +++ b/test_requirements.txt @@ -6,12 +6,10 @@ pytest==6.0.2 pytz==2020.4 pytest-cov==2.10.1 pickle5; python_version == '3.7' and platform_python_implementation != 'PyPy' -pickle5; python_version == '3.6' and platform_python_implementation != 'PyPy' # for numpy.random.test.test_extending cffi # For testing types. Notes on the restrictions: # - Mypy relies on C API features not present in PyPy # - Mypy doesn't currently work on Python 3.9 -# - Python 3.6 doesn't work because it doesn't understand py.typed -mypy==0.790; platform_python_implementation != "PyPy" and python_version > "3.6" +mypy==0.790; platform_python_implementation != "PyPy" typing_extensions |