Skip to content

Commit

Permalink
fix another
Browse files Browse the repository at this point in the history
  • Loading branch information
JelleZijlstra committed Apr 24, 2024
1 parent e0c7a53 commit 6c962f9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tests/test_black.py
Original file line number Diff line number Diff line change
Expand Up @@ -1557,7 +1557,12 @@ def test_infer_target_version(self) -> None:
),
(
">=3.10.6",
[TargetVersion.PY310, TargetVersion.PY311, TargetVersion.PY312],
[
TargetVersion.PY310,
TargetVersion.PY311,
TargetVersion.PY312,
TargetVersion.PY313,
],
),
("<3.6", [TargetVersion.PY33, TargetVersion.PY34, TargetVersion.PY35]),
(">3.7,<3.10", [TargetVersion.PY38, TargetVersion.PY39]),
Expand Down

0 comments on commit 6c962f9

Please sign in to comment.