Skip to content

Commit

Permalink
Add support for Django 5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sandre35 committed Jan 10, 2024
1 parent c4befdd commit 0b872de
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,16 @@ jobs:
django:
- django32
- django42
- django50
exclude:
- django: django32
python-version: "3.11"
- django: django32
python-version: "3.12"
- django: django50
python-version: "3.8"
- django: django50
python-version: "3.9"
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
1.4.2 (unreleased)
------------------

- Add support for Django 5.0
- Add support for Django 4.2
- Add support for Python 3.10 & 3.11 & 3.12
- Drop support for Python 3.6 & 3.7
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{38,39,310,311,312,nightly}-django{32,42,main}
py{38,39,310,311,312,nightly}-django{32,42,50,main}
quality
docstring

Expand All @@ -10,6 +10,7 @@ deps =
-rrequirements/tests.txt
django32: Django==3.2.*
django42: Django==4.2.*
django50: Django==5.0.*
djangomain: https://github.com/django/django/archive/refs/heads/main.zip
passenv =
PYTEST_ADDOPTS
Expand Down

0 comments on commit 0b872de

Please sign in to comment.