Skip to content

Commit

Permalink
add Python 3.13 to PYTHON_VERSION and AVAILABLE_PYTHONS
Browse files Browse the repository at this point in the history
  • Loading branch information
jakob-keller committed Aug 15, 2024
1 parent c4600e5 commit 6d872a2
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/poetry/core/packages/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ class Package(PackageSpecification):
"3.10",
"3.11",
"3.12",
"3.13",
}

def __init__(
Expand Down
1 change: 1 addition & 0 deletions src/poetry/core/version/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"3.10.*",
"3.11.*",
"3.12.*",
"3.13.*",
]


Expand Down
1 change: 1 addition & 0 deletions tests/masonry/builders/test_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ def test_get_metadata_content() -> None:
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules",
]
Expand Down
1 change: 1 addition & 0 deletions tests/masonry/builders/test_complete.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ def test_complete(no_vcs: bool) -> None:
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Provides-Extra: time
Expand Down
1 change: 1 addition & 0 deletions tests/masonry/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ def test_prepare_metadata_for_build_wheel() -> None:
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Provides-Extra: time
Expand Down
2 changes: 2 additions & 0 deletions tests/test_factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ def test_create_poetry() -> None:
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules",
]
Expand Down Expand Up @@ -524,5 +525,6 @@ def test_all_classifiers_unique_even_if_classifiers_is_duplicated() -> None:
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Build Tools",
]

0 comments on commit 6d872a2

Please sign in to comment.