Skip to content

Commit

Permalink
Fix test_issue_1667.py break.
Browse files Browse the repository at this point in the history
The break is only under pypy3.{7,8,9,10} and was caused by the
prompt-toolkit 3.0.42 release today.
  • Loading branch information
jsirois committed Dec 13, 2023
1 parent 0c41043 commit 863de1a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/integration/cli/commands/test_issue_1667.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,11 @@ def test_interpreter_constraints_range_coverage(
# type: (...) -> None

# The traitlets 5.2.2 release breaks IPython.
# The prompt-toolkit 3.0.42 release breaks under pypy3.10.
constraints = os.path.join(str(tmpdir), "constraints.txt")
with open(constraints, "w") as fp:
fp.write("traitlets<5.2.2\n")
fp.write("prompt-toolkit<3.0.42\n")

# We lock with an unconstrained IPython requirement and we know IPython latest does not support
# Python 3.7. If locking respects ICs it should not pick latest, but a version that supports at
Expand Down

0 comments on commit 863de1a

Please sign in to comment.