Skip to content

Commit

Permalink
Fix numpy version
Browse files Browse the repository at this point in the history
  • Loading branch information
evhub committed Aug 31, 2024
1 parent 6048e76 commit 3a0befc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion coconut/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -1056,7 +1056,6 @@ def get_path_env_var(env_var, default):
"pexpect": (4,),
("trollius", "py<3;cpy"): (2, 2),
"requests": (2, 32),
("numpy", "py39"): (2,),
("xarray", "py39"): (2024,),
("dataclasses", "py==36"): (0, 8),
("aenum", "py<34"): (3, 1, 15),
Expand All @@ -1082,6 +1081,8 @@ def get_path_env_var(env_var, default):
}

pinned_min_versions = {
# don't upgrade this; some extensions implicitly require numpy<2
("numpy", "py39"): (1, 26),
# don't upgrade this; it breaks xonsh
("pytest", "py38"): (8, 0),
# don't upgrade these; they break on Python 3.9
Expand Down

0 comments on commit 3a0befc

Please sign in to comment.