Skip to content

Commit 8d6e86a

Browse files
authored
Merge pull request #432 from hiddenSymmetries/numpytypes
Fix for python 3.8 and numpy dependency
2 parents a1b43f4 + 6ac3fa8 commit 8d6e86a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
[build-system]
22
requires = [
3-
"scikit-build-core>=0.3.3",
3+
"scikit-build-core",
44
"pybind11",
5-
"oldest-supported-numpy",
5+
"numpy >= 2.0.0; python_version > '3.8'",
6+
"oldest-supported-numpy; python_version <= '3.8'",
67
"setuptools_scm>=8.0",
78
'tomli; python_version < "3.11"',]
89
build-backend = "scikit_build_core.build"

0 commit comments

Comments
 (0)