Skip to content

Commit

Permalink
Add support for numpy >= 2.0
Browse files Browse the repository at this point in the history
Signed-off-by: Lucas Heitzmann Gabrielli <[email protected]>
  • Loading branch information
heitzmann committed Jun 18, 2024
1 parent 6d22819 commit f8dc01c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
[build-system]
requires = [
"scikit_build_core",
"numpy; platform_system=='Darwin'",
"oldest-supported-numpy; platform_system!='Darwin'",
"numpy >= 2.0"
]
build-backend = "scikit_build_core.build"

Expand All @@ -29,7 +28,8 @@ classifiers = [
]
license = {file = "LICENSE"}
dependencies = [
"numpy",
"numpy; platform_system=='Darwin'",
"oldest-supported-numpy; platform_system!='Darwin'",
"typing_extensions; python_version < '3.11'"
]
requires-python = ">=3.8"
Expand Down

0 comments on commit f8dc01c

Please sign in to comment.