Skip to content

Commit 19a1bf8

Browse files
authored
revert: changes to oldest-supported-numpy
1 parent cd28686 commit 19a1bf8

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

pyproject.toml

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
11
[build-system]
22
requires = [
33
"cmake>=3.1",
4+
"numpy==1.13.3; python_version=='3.6' and platform_machine != 'aarch64' and platform_machine != 'arm64'",
5+
"numpy==1.17.0; python_version=='3.7' and platform_machine != 'aarch64' and platform_machine != 'arm64'",
6+
"numpy==1.17.3; python_version=='3.8' and platform_machine != 'aarch64' and platform_machine != 'arm64'",
7+
"numpy==1.19.3; python_version<='3.9' and sys_platform == 'linux' and platform_machine == 'aarch64'",
8+
"numpy==1.21.0; python_version<='3.9' and sys_platform == 'darwin' and platform_machine == 'arm64'",
9+
"numpy==1.19.3; python_version=='3.9' and platform_machine != 'aarch64' and platform_machine != 'arm64'",
10+
"numpy==1.21.2; python_version=='3.10' and platform_system!='Darwin'",
11+
"numpy==1.21.4; python_version=='3.10' and platform_system=='Darwin'",
12+
"numpy==1.22.0; python_version>='3.11'",
413
"pip",
514
"scikit-build>=0.14.0",
615
"setuptools==59.2.0",
7-
"oldest-supported-numpy",
816
]
9-
build-backend = "setuptools.build_meta"
17+
build-backend = "setuptools.build_meta"

0 commit comments

Comments
 (0)