Skip to content

Commit

Permalink
Fix the build time version of numpy to 2.0.0 or greater (#66)
Browse files Browse the repository at this point in the history
NumPy 2 can build binaries that are compatible with the NumPy 1 C ABI,
but not vice versa. As long as we build with NumPy 2, users should be
able to use older versions of NumPy without problems.

Signed-off-by: William Kearney <[email protected]>
  • Loading branch information
wkearn authored Sep 20, 2024
1 parent 6d1ec92 commit 996ec57
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
[build-system]
requires = ["scikit-build-core","pybind11"]
build-backend = "scikit_build_core.build"
requires = [
"scikit-build-core",
"pybind11",
"numpy>=2.0.0"
]


[project]
name = "topotoolbox"
Expand Down

0 comments on commit 996ec57

Please sign in to comment.