Skip to content

Commit

Permalink
Use NumPy 2.10 for Python 3.13.
Browse files Browse the repository at this point in the history
  • Loading branch information
psobot committed Aug 12, 2024
1 parent 798423d commit d26560f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ requires = [
'pybind11>=2.13; python_version>="3.9"',
'pybind11<=2.12; python_version<="3.8"',
# Building with NumPy 2 allows backwards compatibility with NumPy 1:
'numpy>=2; python_version>="3.9"',
'numpy>=2.1.0rc1; python_version>="3.13"'
'numpy>=2; python_version>="3.9" and python_version<"3.13"',
'numpy<2; python_version<="3.8"',
]

Expand Down

0 comments on commit d26560f

Please sign in to comment.