File tree Expand file tree Collapse file tree 5 files changed +18
-17
lines changed Expand file tree Collapse file tree 5 files changed +18
-17
lines changed Original file line number Diff line number Diff line change @@ -29,33 +29,33 @@ matrix:
29
29
- python : 3.9
30
30
env : TOXENV=py39-django22
31
31
32
+ - python : 3.8
33
+ env : TOXENV=py38-django31
32
34
- python : 3.8
33
35
env : TOXENV=py38-django30
34
36
- python : 3.8
35
37
env : TOXENV=py38-django22
36
- - python : 3.8
37
- env : TOXENV=py38-django21
38
38
- python : 3.8
39
39
env : TOXENV=py38-djangomaster
40
40
41
+ - python : 3.7
42
+ env : TOXENV=py37-django31
41
43
- python : 3.7
42
44
env : TOXENV=py37-django30
43
45
- python : 3.7
44
46
env : TOXENV=py37-django22
45
- - python : 3.7
46
- env : TOXENV=py37-django21
47
47
- python : 3.7
48
48
env : TOXENV=py37-djangomaster
49
49
50
50
- python : 3.6
51
- env : TOXENV=py36-django22
51
+ env : TOXENV=py36-django31
52
+ - python : 3.6
53
+ env : TOXENV=py36-django30
52
54
- python : 3.6
53
- env : TOXENV=py36-django21
55
+ env : TOXENV=py36-django22
54
56
55
57
- python : 3.5
56
58
env : TOXENV=py35-django22
57
- - python : 3.5
58
- env : TOXENV=py35-django21
59
59
60
60
install :
61
61
- pip install coveralls tox tox-travis
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
26
26
* #831 Authorization token creation now can receive an expire date
27
27
* #831 Added a method to override Grant creation
28
28
* #825 Bump oauthlib to 3.1.0 to introduce PKCE
29
+ * Support for Django 3.1
29
30
30
31
### Fixed
31
32
* #847 : Fix inappropriate message when response from authentication server is not OK.
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Requirements
22
22
------------
23
23
24
24
* Python 3.5+
25
- * Django 2.1 +
25
+ * Django 2.2 +
26
26
* oauthlib 3.1+
27
27
28
28
Index
Original file line number Diff line number Diff line change @@ -13,9 +13,9 @@ classifiers =
13
13
Development Status :: 5 - Production/Stable
14
14
Environment :: Web Environment
15
15
Framework :: Django
16
- Framework :: Django :: 2.1
17
16
Framework :: Django :: 2.2
18
17
Framework :: Django :: 3.0
18
+ Framework :: Django :: 3.1
19
19
Intended Audience :: Developers
20
20
License :: OSI Approved :: BSD License
21
21
Operating System :: OS Independent
@@ -32,7 +32,7 @@ packages = find:
32
32
include_package_data = True
33
33
zip_safe = False
34
34
install_requires =
35
- django >= 2.1
35
+ django >= 2.2
36
36
requests >= 2.13.0
37
37
oauthlib >= 3.1.0
38
38
Original file line number Diff line number Diff line change 2
2
envlist =
3
3
py37-flake8,
4
4
py37-docs,
5
- py38 -django{30,22,21 },
6
- py37 -django{30,22,21 },
7
- py36 -django{22,21 },
8
- py35 -django{22,21 },
9
- py39 -django{22,30}
5
+ py39 -django{31, 30,22},
6
+ py38 -django{31, 30,22},
7
+ py37 -django{31,30,22 },
8
+ py36 -django{31,30,22 },
9
+ py35 -django{22},
10
10
py39-djangomaster,
11
11
py38-djangomaster,
12
12
py37-djangomaster,
@@ -22,9 +22,9 @@ setenv =
22
22
PYTHONPATH = {toxinidir}
23
23
PYTHONWARNINGS = all
24
24
deps =
25
- django21: Django>=2.1,<2.2
26
25
django22: Django>=2.2,<3
27
26
django30: Django>=3.0,<3.1
27
+ django31: Django>=3.1,<3.2
28
28
djangomaster: https://github.com/django/django/archive/master.tar.gz
29
29
djangorestframework
30
30
oauthlib>=3.1.0
You can’t perform that action at this time.
0 commit comments