Skip to content

Commit

Permalink
Fix minimum NumPy dependency for new macOS architectures
Browse files Browse the repository at this point in the history
  • Loading branch information
mhostetter committed Jun 7, 2024
1 parent 66648b7 commit 88c1e66
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion requirements-min.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ numpy==1.26.0; python_version=="3.12"
numpy==1.23.2; python_version=="3.11"
numpy==1.21.3; python_version=="3.10"
numpy==1.21.0; python_version=="3.9"
numpy==1.21.0; python_version=="3.8"
numpy==1.22.0; python_version=="3.8" and platform_system=="Darwin" # For macOS
numpy==1.21.0; python_version=="3.8" and platform_system!="Darwin" # For other platforms
numpy==1.21.0; python_version=="3.7"
numba==0.59.0; python_version=="3.12"
numba==0.57.0; python_version=="3.11"
Expand Down

0 comments on commit 88c1e66

Please sign in to comment.