We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89896fa commit cdee80eCopy full SHA for cdee80e
print_deps.py
@@ -32,12 +32,14 @@ def get_numpy_requirement(py_ver):
32
major, minor, *_ = py_ver.split('.')
33
assert major == "3"
34
minor = int(minor)
35
- # SPEC0-minimum as of Dec 23, 2023
36
if minor <= 8:
37
if IS_MUSL:
38
raise RuntimeError("MUSL doesn't have 3.8 wheels")
+ # SPEC0-minimum as of Dec 23, 2023
39
return "1.22.0"
40
- return "2.0.0"
+ if minor == 9:
41
+ return "2.0.2"
42
+ return "2.1.2"
43
44
45
def get_parser():
0 commit comments