Skip to content

Commit

Permalink
Add support for Python 3.13 (#972)
Browse files Browse the repository at this point in the history
* Add support for Python 3.13

* Run other jobs if one fails
  • Loading branch information
hugovk authored Aug 7, 2024
1 parent 1570e70 commit 7f77c1b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@ jobs:
USING_COVERAGE: '3.8'

strategy:
fail-fast: false
matrix:
platform: ["ubuntu-latest", "windows-latest"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.8", "pypy3.9"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.8", "pypy3.9"]

steps:
- uses: "actions/checkout@v4"
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ classifiers =
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Topic :: Utilities

[options]
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ python =
3.10: py310
3.11: py311, docs
3.12: py312
3.13: py313
pypy3.8: pypy3
pypy3.9: pypy3

Expand All @@ -21,7 +22,7 @@ python =
envlist =
lint
typing
py{38,39,310,311,312,py3}-{crypto,nocrypto}
py{38,39,310,311,312,313,py3}-{crypto,nocrypto}
docs
pypi-description
coverage-report
Expand Down

0 comments on commit 7f77c1b

Please sign in to comment.