File tree Expand file tree Collapse file tree 4 files changed +13
-1
lines changed Expand file tree Collapse file tree 4 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ Contributors
8
8
------------
9
9
10
10
Abhishek Patel
11
+ Adam Johnson
11
12
Alan Crosswell
12
13
Alejandro Mantecon Guillen
13
14
Aleksander Vaskevich
Original file line number Diff line number Diff line change @@ -15,8 +15,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
15
15
-->
16
16
17
17
## [ unreleased]
18
+
19
+ ### Added
18
20
* Add 'code_verifier' parameter to token requests in documentation
19
21
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
+
20
28
## [ 2.1.0] 2022-06-19
21
29
22
30
### WARNING
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ classifiers =
15
15
Framework :: Django :: 2.2
16
16
Framework :: Django :: 3.2
17
17
Framework :: Django :: 4.0
18
+ Framework :: Django :: 4.1
18
19
Intended Audience :: Developers
19
20
License :: OSI Approved :: BSD License
20
21
Operating System :: OS Independent
@@ -32,7 +33,7 @@ zip_safe = False
32
33
# jwcrypto has a direct dependency on six, but does not list it yet in a release
33
34
# Previously, cryptography also depended on six, so this was unnoticed
34
35
install_requires =
35
- django >= 2.2, < = 4.1
36
+ django >= 2.2, ! = 4.0.0
36
37
requests >= 2.13.0
37
38
oauthlib >= 3.1.0
38
39
jwcrypto >= 0.8.0
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ envlist =
8
8
py{37,38,39}-dj22,
9
9
py{37,38,39,310}-dj32,
10
10
py{38,39,310}-dj40,
11
+ py{38,39,310}-dj41,
11
12
py{38,39,310}-djmain,
12
13
13
14
[gh-actions]
40
41
dj22: Django>=2.2,<3
41
42
dj32: Django>=3.2,<3.3
42
43
dj40: Django>=4.0.0,<4.1
44
+ dj41: Django>=4.1,<4.2
43
45
djmain: https://github.com/django/django/archive/main.tar.gz
44
46
djangorestframework
45
47
oauthlib>=3.1.0
You can’t perform that action at this time.
0 commit comments