Skip to content

Commit

Permalink
Don't test Python 3.8 wheel with an older numpy version
Browse files Browse the repository at this point in the history
  • Loading branch information
kbvw committed Aug 16, 2024
1 parent 084e9b0 commit d30ad08
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion ci/win_test_installer.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ echo %NEURONHOME%
if not exist association.hoc.out (start /wait /REALTIME %cd%\ci\association.hoc)

:: install oldest supported numpy
C:\Python38\python.exe -m pip install numpy==1.20.3 || goto :error
C:\Python39\python.exe -m pip install numpy==1.20.3 || goto :error
C:\Python310\python.exe -m pip install numpy==1.21.6 || goto :error
C:\Python311\python.exe -m pip install numpy==1.23.5 || goto :error
Expand Down
2 changes: 0 additions & 2 deletions packaging/python/build_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
cython
cython<3;python_version<='3.8'
packaging
numpy
numpy<2;python_version<='3.8'
1 change: 0 additions & 1 deletion packaging/python/test_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ pytest
setuptools;python_version>='3.12' # From 3.12, no longer installed by default

# Oldest supported numpy versions
numpy==1.20.3;python_version=='3.8'
numpy==1.20.3;python_version=='3.9' and platform_machine!='arm64'
numpy==1.21.6;python_version=='3.9' and platform_machine=='arm64'
numpy==1.21.6;python_version=='3.10'
Expand Down

0 comments on commit d30ad08

Please sign in to comment.