Skip to content

Commit

Permalink
Add Django 4.1 support
Browse files Browse the repository at this point in the history
  • Loading branch information
hramezani committed Aug 8, 2022
1 parent fe12021 commit cc7b43b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,12 @@ jobs:
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
django-version: ['3.2', '4.0', 'main']
django-version: ['3.2', '4.0', '4.1', 'main']
exclude:
- python-version: '3.7'
django-version: '4.0'
- python-version: '3.7'
django-version: '4.1'
steps:
- uses: actions/checkout@v2
- name: Setup python
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
- Add Django 4.1 support

## [6.0.0] - 2022-02-21
### Changed
- Update install_requires to use ``jdatetime>=4.0.0``
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,6 @@
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
],
)
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{37,38,39,310}-dj32
py{38,39,310}-dj{40,main}
py{38,39,310}-dj{40,41,main}
py38-lint

[gh-actions]
Expand All @@ -15,13 +15,15 @@ python =
DJANGO =
3.2: dj32
4.0: dj40
4.1: dj41
main: djmain

[testenv]
deps =
-rrequirements-test.txt
dj32: Django==3.2.*
dj40: Django==4.0.*
dj41: Django==4.1.*
djmain: https://github.com/django/django/archive/main.tar.gz
ignore_outcome =
djmain: True
Expand Down

0 comments on commit cc7b43b

Please sign in to comment.