Skip to content

Commit 235e3f8

Browse files
authored
Test Django 4.1 and remove upper version bound (#1203)
* Remove upper version bound on Django 4.1 * fully support Django 4.1 * sections in changelog
1 parent 1b7a08b commit 235e3f8

File tree

4 files changed

+13
-1
lines changed

4 files changed

+13
-1
lines changed

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Contributors
88
------------
99

1010
Abhishek Patel
11+
Adam Johnson
1112
Alan Crosswell
1213
Alejandro Mantecon Guillen
1314
Aleksander Vaskevich

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515
-->
1616

1717
## [unreleased]
18+
19+
### Added
1820
* Add 'code_verifier' parameter to token requests in documentation
1921

22+
### Changed
23+
* Support Django 4.1.
24+
25+
### Fixed
26+
* Remove upper version bound on Django, to allow upgrading to Django 4.1.1 bugfix release.
27+
2028
## [2.1.0] 2022-06-19
2129

2230
### WARNING

setup.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ classifiers =
1515
Framework :: Django :: 2.2
1616
Framework :: Django :: 3.2
1717
Framework :: Django :: 4.0
18+
Framework :: Django :: 4.1
1819
Intended Audience :: Developers
1920
License :: OSI Approved :: BSD License
2021
Operating System :: OS Independent
@@ -32,7 +33,7 @@ zip_safe = False
3233
# jwcrypto has a direct dependency on six, but does not list it yet in a release
3334
# Previously, cryptography also depended on six, so this was unnoticed
3435
install_requires =
35-
django >= 2.2, <= 4.1
36+
django >= 2.2, != 4.0.0
3637
requests >= 2.13.0
3738
oauthlib >= 3.1.0
3839
jwcrypto >= 0.8.0

tox.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ envlist =
88
py{37,38,39}-dj22,
99
py{37,38,39,310}-dj32,
1010
py{38,39,310}-dj40,
11+
py{38,39,310}-dj41,
1112
py{38,39,310}-djmain,
1213

1314
[gh-actions]
@@ -40,6 +41,7 @@ deps =
4041
dj22: Django>=2.2,<3
4142
dj32: Django>=3.2,<3.3
4243
dj40: Django>=4.0.0,<4.1
44+
dj41: Django>=4.1,<4.2
4345
djmain: https://github.com/django/django/archive/main.tar.gz
4446
djangorestframework
4547
oauthlib>=3.1.0

0 commit comments

Comments
 (0)