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
claudep committed Dec 27, 2023
1 parent c372147 commit ceb77b6
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,18 @@ jobs:
max-parallel: 5
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
django-version: ['3.2', '4.1', '4.2']
django-version: ['3.2', '4.1', '4.2', '5.0']
exclude:
- python-version: '3.8'
django-version: '5.0'
- python-version: '3.9'
django-version: '5.0'

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Unreleased
* Fix internal redirect checker (Timo Ludwig, #180)
* Fix SSL status of unreachable domains (Timo Ludwig, #184)
* Fix URL message for internal server errorrs (Timo Ludwig, #182)
* Add support for Django 4.2
* Add support for Django 4.2 and 5.0
* Add support for Python 3.12
* Remove support for Django 4.0
* Remove support for Python 3.7
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ classifiers = [
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
]
license = {text = "BSD-3-Clause"}
requires-python = ">=3.8"
Expand Down

0 comments on commit ceb77b6

Please sign in to comment.