Closed
Conversation
- Update pyproject.toml classifiers to include Python 3.12 and 3.13 - Add Python 3.12 and 3.13 to CI test matrix in GitHub Actions - Update documentation to reflect support for Python 3.8-3.13 - Regenerate poetry.lock to resolve dependency constraints This change extends Python version support to include the latest stable releases while maintaining backward compatibility with existing versions.
raonitimo
commented
Sep 6, 2025
| strategy: | ||
| matrix: | ||
| python-version: ["3.8", "3.9", "3.10", "3.11"] | ||
| python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] |
Author
There was a problem hiding this comment.
Suggested change
| python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] | |
| python-version: ["3.10", "3.11", "3.12", "3.13"] |
| 1. Set up your environment by following the directions in the [Development Guide](./docs/development-guide/DevelopmentGuide.md). | ||
| 2. To contribute, first make a fork of this project. | ||
| 3. Make any changes on your fork. Make sure you are aware of the requirements for the project (e.g. do not require Python 3.7 if we are supporting Python 3.8 - 3.11 (inclusive)). | ||
| 3. Make any changes on your fork. Make sure you are aware of the requirements for the project (e.g. do not require Python 3.7 if we are supporting Python 3.8 - 3.13 (inclusive)). |
Author
There was a problem hiding this comment.
Suggested change
| 3. Make any changes on your fork. Make sure you are aware of the requirements for the project (e.g. do not require Python 3.7 if we are supporting Python 3.8 - 3.13 (inclusive)). | |
| 3. Make any changes on your fork. Make sure you are aware of the requirements for the project (e.g. do not require Python 3.9 if we are supporting Python 3.10 - 3.13 (inclusive)). |
|
|
||
| ### Setup | ||
| Make sure you have Python 3.8 - 3.11 (inclusive) installed, along with your choice of underlying Python driver (see [minimum requirements](../GettingStarted.md#minimum-requirements)). | ||
| Make sure you have Python 3.8 - 3.13 (inclusive) installed, along with your choice of underlying Python driver (see [minimum requirements](../GettingStarted.md#minimum-requirements)). |
Author
There was a problem hiding this comment.
Suggested change
| Make sure you have Python 3.8 - 3.13 (inclusive) installed, along with your choice of underlying Python driver (see [minimum requirements](../GettingStarted.md#minimum-requirements)). | |
| Make sure you have Python 3.10 - 3.13 (inclusive) installed, along with your choice of underlying Python driver (see [minimum requirements](../GettingStarted.md#minimum-requirements)). |
Comment on lines
20
to
+24
| "Programming Language :: Python :: 3.9", | ||
| "Programming Language :: Python :: 3.10", | ||
| "Programming Language :: Python :: 3.11", | ||
| "Programming Language :: Python :: 3.12", | ||
| "Programming Language :: Python :: 3.13", |
Author
There was a problem hiding this comment.
Suggested change
| "Programming Language :: Python :: 3.9", | |
| "Programming Language :: Python :: 3.10", | |
| "Programming Language :: Python :: 3.11", | |
| "Programming Language :: Python :: 3.12", | |
| "Programming Language :: Python :: 3.13", | |
| "Programming Language :: Python :: 3.10", | |
| "Programming Language :: Python :: 3.11", | |
| "Programming Language :: Python :: 3.12", | |
| "Programming Language :: Python :: 3.13", |
Contributor
|
Closing this PR since Python versions 3.12 and 3.13 are now supported in v2.0.0. Thank you for the proposed changes! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR adds support for Python 3.12 and 3.13 to the AWS Advanced Python Wrapper.
Changes
pyproject.tomlto include Python 3.12 and 3.13 classifierspoetry.lockto resolve dependency constraintsTest Plan
Compatibility
This change maintains full backward compatibility with existing Python versions (3.8-3.11) while extending support to the latest stable Python releases.