Skip to content

Commit

Permalink
Add support for Django 5.1, remove Python 3.12 restriction on Django …
Browse files Browse the repository at this point in the history
…4.2 (#1013)

* add support for django 5.1, remove python 3.12 restriction on django 4.2

* update classifiers and prepare changelog
  • Loading branch information
lociii authored Sep 15, 2024
1 parent 82aba09 commit 8494f5a
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,20 @@ jobs:
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", 3.11, 3.12]
django-version: [4.2, 5.0, "main"]
django-version: [4.2, 5.0, 5.1, "main"]
exclude:
# Django 4.2
- python-version: 3.12
django-version: 4.2

# Django 5.0
- python-version: 3.8
django-version: 5.0
- python-version: 3.9
django-version: 5.0

# Django 5.1
- python-version: 3.8
django-version: 5.1
- python-version: 3.9
django-version: 5.1

# Django main
- python-version: 3.8
django-version: "main"
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## Unreleases

- Add support for Django 5.1 (#1013)

## 24.2 (2024-04-17)

- Reinstate setuptools_scm for build (#965).
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ classifiers = [
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
Expand Down

0 comments on commit 8494f5a

Please sign in to comment.