Skip to content

Commit

Permalink
Bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
evhub committed Jun 7, 2024
1 parent 01e6b34 commit d6e527d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repos:
- --experimental
- --ignore=W503,E501,E722,E402,E721
- repo: https://github.com/pre-commit/pre-commit-hooks.git
rev: v4.5.0
rev: v4.6.0
hooks:
- id: check-added-large-files
- id: fix-byte-order-marker
Expand Down
8 changes: 4 additions & 4 deletions coconut/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -1043,7 +1043,7 @@ def get_path_env_var(env_var, default):
("argparse", "py<27"): (1, 4),
"pexpect": (4,),
("trollius", "py<3;cpy"): (2, 2),
"requests": (2, 31),
"requests": (2, 32),
("numpy", "py39"): (1, 26),
("xarray", "py39"): (2024,),
("dataclasses", "py==36"): (0, 8),
Expand All @@ -1055,14 +1055,14 @@ def get_path_env_var(env_var, default):
"pyright": (1, 1),
("jupyter-console", "py37"): (6, 6),
("typing", "py<35"): (3, 10),
("typing_extensions", "py>=38"): (4, 11),
("typing_extensions", "py>=38"): (4, 12),
("ipykernel", "py38"): (6,),
("jedi", "py39"): (0, 19),
("pygments", "py>=39"): (2, 17),
("pygments", "py>=39"): (2, 18),
("xonsh", "py39"): (0, 16),
("async_generator", "py35"): (1, 10),
("exceptiongroup", "py37;py<311"): (1,),
("ipython", "py>=310"): (8, 24),
("ipython", "py>=310"): (8, 25),
"py-spy": (0, 3),
}

Expand Down
3 changes: 2 additions & 1 deletion coconut/tests/main_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,8 @@ def pexpect(p, out):
"from distutils.version import LooseVersion",
": SyntaxWarning: 'int' object is not ",
": CoconutWarning: Deprecated use of ",
" assert_raises(",
" assert_raises(",
" assert ",
"Populating initial parsing cache",
"_coconut.warnings.warn(",
": SyntaxWarning: invalid escape sequence",
Expand Down
1 change: 1 addition & 0 deletions coconut/tests/src/cocotest/agnostic/primary_2.coco
Original file line number Diff line number Diff line change
Expand Up @@ -465,6 +465,7 @@ def primary_test_2() -> bool:
"{x}"
""" == '\n"2"\n'
assert f"\{1}" == "\\1"
assert f''' '{1}' ''' == " 1 "

with process_map.multiple_sequential_calls(): # type: ignore
assert map((+), range(3), range(4)$[:-1], strict=True) |> list == [0, 2, 4] == process_map((+), range(3), range(4)$[:-1], strict=True) |> list # type: ignore
Expand Down

0 comments on commit d6e527d

Please sign in to comment.