Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,24 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
django-version: ["4.2", "5.0", "5.1"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
django-version: ["4.2", "5.0", "5.1", "5.2"]
include:
- python-version: "3.9"
django-version: "4.2"
- python-version: "3.13"
django-version: "5.1"

exclude:
# Python 3.9 is incompatible with Django v5+
- django-version: 5.0
python-version: 3.9
- django-version: 5.1
python-version: 3.9
- django-version: 5.2
python-version: 3.9
# Django 4.2 is incompatible with Python 3.13+
- django-version: 4.2
python-version: 3.13
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ def read(*rnames):
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{3.9,3.10,3.11,3.12,3.13}-django{4.2,5.0,5.1}
py{3.9,3.10,3.11,3.12,3.13}-django{4.2,5.0,5.1,5.2}

[testenv]
commands =
Expand All @@ -11,6 +11,7 @@ deps =
django4.2: django~=4.2
django5.0: django~=5.0
django5.1: django~=5.1
django5.2: django~=5.2
djangomaster: https://github.com/django/django/archive/master.tar.gz
.

Expand Down
Loading