You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
release v1.4.1, updating classifiers and python_requires in setup.py (#657)
* release v1.4.1, fixing python_requires and classiers in setup.py
* drop Python 3.7 test cases
* Drop Python 3.7 tests from Appveyor as well
* Remove Python 3.7 entries in pyproject.toml
Co-authored-by: Ralf Gommers <ralf.gommers@gmail.com>
Copy file name to clipboardExpand all lines: pyproject.toml
-2Lines changed: 0 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,6 @@ requires = [
17
17
18
18
# numpy 1.19 was the first minor release to provide aarch64 wheels, but
19
19
# wheels require fixes contained in numpy 1.19.2
20
-
"numpy==1.19.2; python_version=='3.7' and platform_machine=='aarch64'",
21
20
"numpy==1.19.2; python_version=='3.8' and platform_machine=='aarch64'",
22
21
# aarch64 for py39 is covered by default requirement below
23
22
@@ -31,7 +30,6 @@ requires = [
31
30
"numpy==1.22.3; python_version=='3.10' and platform_system=='Windows' and platform_python_implementation != 'PyPy'",
32
31
33
32
# default numpy requirements
34
-
"numpy==1.17.3; python_version=='3.7' and (platform_machine!='arm64' or platform_system!='Darwin') and platform_machine!='aarch64' and platform_python_implementation != 'PyPy'",
35
33
"numpy==1.17.3; python_version=='3.8' and (platform_machine!='arm64' or platform_system!='Darwin') and platform_machine!='aarch64' and platform_python_implementation != 'PyPy'",
36
34
"numpy==1.19.3; python_version=='3.9' and (platform_machine!='arm64' or platform_system!='Darwin') and platform_python_implementation != 'PyPy'",
37
35
# Note that 1.21.3 was the first version with a complete set of 3.10 wheels,
0 commit comments