Skip to content

Commit

Permalink
Merge pull request #702 from marshmallow-code/py313
Browse files Browse the repository at this point in the history
Support Python 3.13
  • Loading branch information
lafrech authored Oct 24, 2024
2 parents 6baf9ba + 8ba3d7c commit 80639c0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
matrix:
include:
- { name: '3.9', python: '3.9', tox: py39 }
- { name: '3.12', python: '3.12', tox: py312 }
- { name: '3.13', python: '3.13', tox: py313 }
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand All @@ -31,7 +31,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: "3.13"
- name: Install pypa/build
run: python -m pip install build
- name: Build a binary wheel and a source tarball
Expand All @@ -54,7 +54,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: "3.13"
- run: python -m pip install tox
- run: python -m tox -e lint
publish-to-pypi:
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.9"
dependencies = [
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = lint,py39,py310,py311,py312
envlist = lint,py39,py310,py311,py312,py313
skip_missing_interpreters = True

[testenv]
Expand Down

0 comments on commit 80639c0

Please sign in to comment.