Skip to content

Commit

Permalink
Merge pull request #164 from jazzband/t144
Browse files Browse the repository at this point in the history
[#144] Add Python-3.13 support
  • Loading branch information
shimizukawa authored Nov 23, 2024
2 parents 101ab83 + 100574e commit 2aae4fc
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
fail-fast: false
max-parallel: 5
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
django-version: ['4.2', '5.0', '5.1']
exclude:
- django-version: '5.0'
Expand All @@ -19,6 +19,10 @@ jobs:
python-version: '3.9'
- django-version: 'main'
python-version: '3.9'
- django-version: '4.2'
python-version: '3.13'
- django-version: '5.0'
python-version: '3.13'

services:
postgres:
Expand Down
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ General:

Features:

* #144 Add Python-3.13 support.
* #141 Drop Django-3.2, 4.0 support.
* #142 Drop Python-3.8 support.

Expand Down
2 changes: 1 addition & 1 deletion doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Support versions

This product is tested with:

* Python-3.9, 3.10, 3.11, 3.12
* Python-3.9, 3.10, 3.11, 3.12, 3.13
* Django-4.2, 5.0, 5.1

License
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,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",
]
dependencies = [
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
envlist =
py{39,310,311,312}-dj42
py{310,311,312}-dj50
py{310,311,312}-dj51
py{310,311,312,313}-dj51
lint
check
skipsdist = True
Expand All @@ -13,6 +13,7 @@ python =
3.10: py310, lint, check
3.11: py311
3.12: py312
3.13: py313

[gh-actions:env]
DJANGO =
Expand Down

0 comments on commit 2aae4fc

Please sign in to comment.