Skip to content

Commit

Permalink
Confirm Django 5.1 support (#262)
Browse files Browse the repository at this point in the history
  • Loading branch information
hramezani authored Oct 20, 2024
1 parent b2d8d93 commit c23cd27
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,18 @@ 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:
- python-version: '3.8'
django-version: '5.0'
- python-version: '3.8'
django-version: '5.1'
- python-version: '3.8'
django-version: 'main'
- python-version: '3.9'
django-version: '5.0'
- python-version: '3.9'
django-version: '5.1'
- python-version: '3.9'
django-version: 'main'
- python-version: '3.12'
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

### Changed
- Confirm Django 5.1 support

## [7.1.0] - 2024-08-20
### Changed
- Respect jDateField's input_formats kwarg when parsing date
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ classifiers =
Framework :: Django
Framework :: Django :: 4.2
Framework :: Django :: 5.0
Framework :: Django :: 5.1

[options]
packages = find:
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
envlist =
py{38,39,310,311}-dj42
py{310,311,312}-dj{50,main}
py{310,311,312}-dj{50,51,main}
py38-lint

[gh-actions]
Expand All @@ -16,13 +16,15 @@ python =
DJANGO =
4.2: dj42
5.0: dj50
5.1: dj51
main: djmain

[testenv]
deps =
-rrequirements-test.txt
dj42: Django==4.2.*
dj50: Django==5.0.*
dj51: Django==5.1.*
djmain: https://github.com/django/django/archive/main.tar.gz
ignore_outcome =
djmain: True
Expand Down

0 comments on commit c23cd27

Please sign in to comment.