Skip to content

Commit

Permalink
Update max Py version in --about
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Oct 8, 2024
1 parent 1bcd297 commit 17de2c8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion singer_sdk/about.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

# Keep these in sync with the supported Python versions in pyproject.toml
_PY_MIN_VERSION = 8
_PY_MAX_VERSION = 12
_PY_MAX_VERSION = 13


def _get_min_version(specifiers: SpecifierSet) -> int:
Expand Down
4 changes: 2 additions & 2 deletions tests/core/test_about.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ def test_get_supported_pythons_sdk():
"specifiers,expected",
[
(">=3.7,<3.12", ["3.7", "3.8", "3.9", "3.10", "3.11"]),
(">=3.7", ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]),
(">3.7", ["3.8", "3.9", "3.10", "3.11", "3.12"]),
(">=3.7", ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]),
(">3.7", ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]),
(">3.7,<=3.11", ["3.8", "3.9", "3.10", "3.11"]),
],
)
Expand Down

0 comments on commit 17de2c8

Please sign in to comment.