Skip to content

Commit

Permalink
[internal] Fix issue with no pip version satisfying this IC range. (p…
Browse files Browse the repository at this point in the history
  • Loading branch information
kaos authored Oct 30, 2023
1 parent ab631e7 commit dc47dbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/python/pants/backend/python/util_rules/pex_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ def test_entry_point(rule_runner: RuleRunner) -> None:


def test_interpreter_constraints(rule_runner: RuleRunner) -> None:
constraints = InterpreterConstraints(["CPython>=2.7,<3", "CPython>=3.6"])
constraints = InterpreterConstraints(["CPython>=2.7,<3", "CPython>=3.6,<3.12"])
pex_info = create_pex_and_get_pex_info(
rule_runner, interpreter_constraints=constraints, internal_only=False
)
Expand Down

0 comments on commit dc47dbf

Please sign in to comment.