Skip to content

Commit

Permalink
Add support for Django 4.1 & 4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sandre35 committed Oct 27, 2023
1 parent f8f79fb commit df84bfb
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ jobs:
- 3.10
django:
- django32
- django41
- django42
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
10 changes: 10 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,16 @@ matrix:
- {env: DJANGO=3.2, python: '3.10'}
- {env: DJANGO=3.2, python: 'nightly'}

- {env: DJANGO=4.1, python: '3.8'}
- {env: DJANGO=4.1, python: '3.9'}
- {env: DJANGO=4.1, python: '3.10'}
- {env: DJANGO=4.1, python: 'nightly'}

- {env: DJANGO=4.2, python: '3.8'}
- {env: DJANGO=4.2, python: '3.9'}
- {env: DJANGO=4.2, python: '3.10'}
- {env: DJANGO=4.2, python: 'nightly'}

- {env: DJANGO=master, python: '3.8'}
- {env: DJANGO=master, python: '3.9'}
- {env: DJANGO=master, python: '3.10'}
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 4.1 & 4.2
- Add support for Python 3.10
- Drop support for Python 3.6 & 3.7
- Drop support for Django 3.1
Expand Down
4 changes: 3 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,nightly}-django{32,main}
py{38,39,310,nightly}-django{32,41,42,main}
quality
docstring

Expand All @@ -9,6 +9,8 @@ commands = pytest --doctest-glob=README.rst --doctest-modules {posargs}
deps =
-rrequirements/tests.txt
django32: Django==3.2.*
django41: Django==4.1.*
django42: Django==4.2.*
djangomain: https://github.com/django/django/archive/refs/heads/main.zip
passenv =
PYTEST_ADDOPTS
Expand Down

0 comments on commit df84bfb

Please sign in to comment.