Skip to content

Commit

Permalink
Select versions
Browse files Browse the repository at this point in the history
  • Loading branch information
matthew-brett committed Oct 6, 2024
1 parent 89896fa commit cdee80e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions print_deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,14 @@ def get_numpy_requirement(py_ver):
major, minor, *_ = py_ver.split('.')
assert major == "3"
minor = int(minor)
# SPEC0-minimum as of Dec 23, 2023
if minor <= 8:
if IS_MUSL:
raise RuntimeError("MUSL doesn't have 3.8 wheels")
# SPEC0-minimum as of Dec 23, 2023
return "1.22.0"
return "2.0.0"
if minor == 9:
return "2.0.2"
return "2.1.2"


def get_parser():
Expand Down

0 comments on commit cdee80e

Please sign in to comment.