Skip to content

Commit 4b9a04c

Browse files
committed
Updated barrier to skip 3.12-3.13
1 parent 9ad28aa commit 4b9a04c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test_typing_extensions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7364,8 +7364,8 @@ def test_type_params_possibilities(self):
73647364
TypeAliasType("OkCase", List[T], type_params=case)
73657365
for case, msg in invalid_cases:
73667366
with self.subTest(type_params=case):
7367-
if TYPING_3_12_0 and sys.version_info < (3, 12, 8) or sys.version_info[:3] < (3, 13, 1):
7368-
self.skipTest("No backport for <3.12.8 and 3.13.0, requires PR #124795")
7367+
if TYPING_3_12_0 and sys.version_info < (3, 14):
7368+
self.skipTest("No backport for 3.12 and 3.13 requires cpython PR #124795")
73697369
with self.assertRaisesRegex(TypeError, msg):
73707370
TypeAliasType("InvalidCase", List[T], type_params=case)
73717371

0 commit comments

Comments
 (0)