Skip to content

Commit cdee80e

Browse files
committed
Select versions
1 parent 89896fa commit cdee80e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

print_deps.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,14 @@ def get_numpy_requirement(py_ver):
3232
major, minor, *_ = py_ver.split('.')
3333
assert major == "3"
3434
minor = int(minor)
35-
# SPEC0-minimum as of Dec 23, 2023
3635
if minor <= 8:
3736
if IS_MUSL:
3837
raise RuntimeError("MUSL doesn't have 3.8 wheels")
38+
# SPEC0-minimum as of Dec 23, 2023
3939
return "1.22.0"
40-
return "2.0.0"
40+
if minor == 9:
41+
return "2.0.2"
42+
return "2.1.2"
4143

4244

4345
def get_parser():

0 commit comments

Comments
 (0)