Skip to content

Commit

Permalink
Fix dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
evhub committed Aug 31, 2024
1 parent 3a0befc commit 149110f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions coconut/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -1077,7 +1077,6 @@ def get_path_env_var(env_var, default):
("exceptiongroup", "py37;py<311"): (1,),
("ipython", "py>=310"): (8, 27),
"py-spy": (0, 3),
"pytest_remotedata": (0, 4),
}

pinned_min_versions = {
Expand All @@ -1096,7 +1095,7 @@ def get_path_env_var(env_var, default):
# don't upgrade these; they break on Python 3.6
("anyio", "py36"): (3,),
("xonsh", "py>=36;py<39"): (0, 11),
("pandas", "py36"): (1, 16),
("pandas", "py36"): (1, 1),
("jupyter-client", "py36"): (7, 1, 2),
("typing_extensions", "py==36"): (4, 1),
("pytest", "py>=36;py<38"): (7,),
Expand Down Expand Up @@ -1129,6 +1128,7 @@ def get_path_env_var(env_var, default):
"papermill": (1, 2),
("numpy", "py<3;cpy"): (1, 16),
("backports.functools-lru-cache", "py<3"): (1, 6),
"pytest_remotedata": (0, 3),
# don't upgrade this; it breaks with old IPython versions
("jedi", "py<39"): (0, 17),
# Coconut requires pyparsing 2
Expand Down

0 comments on commit 149110f

Please sign in to comment.