Skip to content

Commit

Permalink
Add support for NumPy 1.25
Browse files Browse the repository at this point in the history
Implements #491
  • Loading branch information
mhostetter committed Sep 30, 2023
1 parent e8e5bf5 commit 3ab6268
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ classifiers = [
]
requires-python = ">=3.7"
dependencies = [
"numpy >= 1.21.0, < 1.25", # v1.21.0 is needed for dtype support of ufuncs, see https://numpy.org/devdocs/release/1.21.0-notes.html#ufunc-signature-and-dtype-generalization-and-casting
"numpy >= 1.21.0, < 1.26", # v1.21.0 is needed for dtype support of ufuncs, see https://numpy.org/devdocs/release/1.21.0-notes.html#ufunc-signature-and-dtype-generalization-and-casting
"numba >= 0.55, < 0.59", # v0.55 is needed for support of NumPy 1.21
"typing_extensions >= 4.0.0", # v4.0.0 is needed for use of Self (Python 3.11+) and Literal (Python 3.8+)
]
Expand Down

0 comments on commit 3ab6268

Please sign in to comment.