Skip to content

Commit

Permalink
[improvement] Add support for Python 3.13 (#523)
Browse files Browse the repository at this point in the history
  • Loading branch information
ulgens authored Nov 10, 2024
1 parent a44ad5d commit 380fa48
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ 3.8, 3.9, '3.10', 3.11, 3.12 ]
python-version: [ 3.8, 3.9, '3.10', 3.11, 3.12, 3.13 ]

steps:
- uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.8"
Expand Down
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ envlist =
py{310}-django{32,40,41,42,50,51}
py{311}-django{41,42,50,51}
py{312}-django{42,50,51}
py{313}-django{51}
isolated_build = True

[gh-actions]
Expand All @@ -13,6 +14,7 @@ python =
3.10: py310
3.11: py311
3.12: py312
3.13: py313

[testenv]
allowlist_externals = ./run.sh
Expand Down

0 comments on commit 380fa48

Please sign in to comment.