Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add Python 3.13 support #718

Merged
merged 1 commit into from
Oct 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
include:
- # test with the latest dependencies
os: ubuntu-latest
python-version: '3.12'
python-version: '3.13'
toxenv-factors: '-current'
- # test with the lowest dependencies
os: ubuntu-latest
Expand Down Expand Up @@ -117,7 +117,8 @@ jobs:
matrix:
os: ['ubuntu-latest', 'windows-latest', 'macos-13']
python-version:
- "3.12" # highest supported
- "3.13" # highest supported
- "3.12"
- "3.11"
- "3.10"
- "3.9"
Expand Down Expand Up @@ -215,7 +216,7 @@ jobs:
# see https://github.com/actions/setup-python
uses: actions/setup-python@v5
with:
python-version: '>=3.8 <=3.12' # supported version range
python-version: '>=3.8 <=3.13' # supported version range
jkowalleck marked this conversation as resolved.
Show resolved Hide resolved
- name: Validate Python Environment
shell: python
run: |
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ classifiers = [
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Typing :: Typed',
]
keywords = [
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ minversion = 4.0
envlist =
flake8
mypy-{current,lowest}
py{312,311,310,39,38}-{allExtras,noExtras}
py{313,312,311,310,39,38}-{allExtras,noExtras}
bandit
skip_missing_interpreters = True
usedevelop = False
Expand Down