Skip to content

Commit

Permalink
BEHAVIOR: run tests on Python 3.13 (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
redeboer authored Jan 22, 2025
1 parent 68bbd3d commit 39e82b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion create-pytest-matrix/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def __get_allowed_versions(version_range: str) -> list[str]:
['3.9', '3.10', '3.11', '3.12']
"""
specifier = SpecifierSet(version_range)
allowed_versions = [f"3.{v}" for v in range(6, 13)]
allowed_versions = [f"3.{v}" for v in range(6, 14)]
versions_to_check = [Version(v) for v in sorted(allowed_versions)]
return [str(v) for v in versions_to_check if v in specifier]

Expand Down

0 comments on commit 39e82b9

Please sign in to comment.