Skip to content

Commit

Permalink
feat: Add Python 3.13 support (#718)
Browse files Browse the repository at this point in the history
Signed-off-by: gruebel <anton.gruebel@gmail.com>
  • Loading branch information
gruebel authored Oct 22, 2024
1 parent 10c4ec2 commit d4be3ba
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
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
- 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

0 comments on commit d4be3ba

Please sign in to comment.