Skip to content

Commit

Permalink
Add support for Django 5.1 and Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
WhyNotHugo committed Dec 30, 2024
1 parent f60820a commit 56c1292
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: [ '3.9', '3.10', '3.11', '3.12' ]
python: [ '3.9', '3.10', '3.11', '3.12' ] # 3.13 is missing
name: python${{ matrix.python }}, django-${{ matrix.django }}
steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ v5.0.0

- Fixed documentation not rendering on readthedocs.
- Drop support for Python 3.8.
- Add support for Python 3.11 and 3.12.
- Add support for Django 4.1 and 4.2.
- Add support for Python 3.11, 3.12 and 3.13.
- Add support for Django 4.1, 4.2 and 5.1.

v4.0.0
~~~~~~
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
]
Expand Down
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
envlist =
py{39,310}-django32
py{39,310,311,312}-django42
py{310,311,312,313}-django51

[testenv]
deps =
Expand All @@ -11,6 +12,7 @@ deps =
commands =
django32: pip install "Django>=3.2,<3.3"
django42: pip install "Django>=4.2,<4.3"
django51: pip install "Django>=5.1,<5.2"
pytest testapp/ {posargs}
setenv =
PYTHONWARNINGS = all
Expand Down

0 comments on commit 56c1292

Please sign in to comment.