File tree Expand file tree Collapse file tree 4 files changed +16
-4
lines changed Expand file tree Collapse file tree 4 files changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -28,10 +28,19 @@ matrix:
28
28
env : TOXENV=py38-django-31
29
29
- python : 3.8
30
30
env : TOXENV=py38-django-master
31
+ - python : 3.9
32
+ env : TOXENV=py39-django-22
33
+ - python : 3.9
34
+ env : TOXENV=py39-django-30
35
+ - python : 3.9
36
+ env : TOXENV=py39-django-31
37
+ - python : 3.9
38
+ env : TOXENV=py39-django-master
31
39
allow_failures :
32
40
- env : TOXENV=py36-django-master
33
41
- env : TOXENV=py37-django-master
34
42
- env : TOXENV=py38-django-master
43
+ - env : TOXENV=py39-django-master
35
44
install :
36
45
- pip install tox
37
46
script :
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ Unreleased
15
15
characters, you should provide a custom Comment model
16
16
(more about that in the documentation) with an appropriate
17
17
``object_pk `` field.
18
+ * Confirmed support for Python 3.9.
18
19
19
20
20
21
2.0.0 (2020-12-20)
Original file line number Diff line number Diff line change 35
35
'Programming Language :: Python :: 3.6' ,
36
36
'Programming Language :: Python :: 3.7' ,
37
37
'Programming Language :: Python :: 3.8' ,
38
+ 'Programming Language :: Python :: 3.9' ,
38
39
],
39
40
packages = find_packages (exclude = ['tests' , 'tests.*' ]),
40
41
include_package_data = True ,
Original file line number Diff line number Diff line change 1
1
[tox]
2
2
envlist =
3
- py3{5,6,7,8}-django22
4
- py3{6,7,8}-django30
5
- py3{6,7,8}-django31
6
- py3{6,7,8}-master
3
+ py3{5,6,7,8,9 }-django22
4
+ py3{6,7,8,9 }-django30
5
+ py3{6,7,8,9 }-django31
6
+ py3{6,7,8,9 }-master
7
7
8
8
[testenv]
9
9
basepython =
10
10
py35: python3.5
11
11
py36: python3.6
12
12
py37: python3.7
13
13
py38: python3.8
14
+ py39: python3.9
14
15
commands = {envpython} setup.py test
15
16
setenv =
16
17
PYTHONWARNINGS =default
You can’t perform that action at this time.
0 commit comments