1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
--- scipy/pyproject.toml 2023-11-24 20:15:51.339484206 -0500
+++ scipy-2/pyproject.toml 2023-11-24 20:16:42.347447963 -0500
@@ -21,20 +21,20 @@
# API versions by default).
# default numpy requirements
- "numpy==1.22.4; python_version<='3.10' and platform_python_implementation != 'PyPy'",
- "numpy==1.23.2; python_version=='3.11' and platform_python_implementation != 'PyPy'",
- "numpy>=1.26.0,<1.27; python_version=='3.12'",
+# "numpy==1.22.4; python_version<='3.10' and platform_python_implementation != 'PyPy'",
+# "numpy==1.23.2; python_version=='3.11' and platform_python_implementation != 'PyPy'",
+# "numpy>=1.26.0,<1.27; python_version=='3.12'",
# PyPy requirements; 1.25.0 was the first version to have pypy-3.9 wheels,
# and 1.25.0 also changed the C API target to 1.19.x, so no longer a need
# for an exact pin.
- "numpy>=1.25.0; python_version>='3.9' and platform_python_implementation=='PyPy'",
+# "numpy>=1.25.0; python_version>='3.9' and platform_python_implementation=='PyPy'",
# For Python versions which aren't yet officially supported, we specify an
# unpinned NumPy which allows source distributions to be used and allows
# wheels to be used as soon as they become available.
# Python 3.13 has known issues that are only fixed in numpy 2.0.0.dev0
- "numpy>=2.0.0.dev0; python_version>='3.13'",
+# "numpy>=2.0.0.dev0; python_version>='3.13'",
]
[project]
|