File tree Expand file tree Collapse file tree 4 files changed +13
-3
lines changed Expand file tree Collapse file tree 4 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -42,9 +42,16 @@ matrix:
42
42
env : TOXENV=py37-django-31
43
43
- python : 3.7
44
44
env : TOXENV=py37-django-master
45
+ - python : 3.8
46
+ env : TOXENV=py38-django-30
47
+ - python : 3.8
48
+ env : TOXENV=py38-django-31
49
+ - python : 3.8
50
+ env : TOXENV=py38-django-master
45
51
allow_failures :
46
52
- env : TOXENV=py36-django-master
47
53
- env : TOXENV=py37-django-master
54
+ - env : TOXENV=py38-django-master
48
55
install :
49
56
- pip install tox
50
57
script :
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ X.Y.Z (YYYY-MM-DD)
10
10
* Renamed zh_CN to zh_Hans and zh_TW to zh_Hant to match
11
11
Django Chinese translations naming.
12
12
* Confirmed support for Django 3.1.
13
+ * Confirmed support for Python 3.8.
13
14
14
15
1.9.2 (2019-12-03)
15
16
------------------
Original file line number Diff line number Diff line change 37
37
'Programming Language :: Python :: 3' ,
38
38
'Programming Language :: Python :: 3.6' ,
39
39
'Programming Language :: Python :: 3.7' ,
40
+ 'Programming Language :: Python :: 3.8' ,
40
41
],
41
42
packages = find_packages (exclude = ['tests' , 'tests.*' ]),
42
43
include_package_data = True ,
Original file line number Diff line number Diff line change @@ -4,16 +4,17 @@ envlist =
4
4
py3{4,5,6,7}-django20
5
5
py3{5,6,7}-django21
6
6
py3{5,6,7}-django22
7
- py3{6,7}-django30
8
- py3{6,7}-django31
9
- py3{6,7}-master
7
+ py3{6,7,8 }-django30
8
+ py3{6,7,8 }-django31
9
+ py3{6,7,8 }-master
10
10
11
11
[testenv]
12
12
basepython =
13
13
py34: python3.4
14
14
py35: python3.5
15
15
py36: python3.6
16
16
py37: python3.7
17
+ py38: python3.8
17
18
commands = {envpython} setup.py test
18
19
setenv =
19
20
PYTHONWARNINGS =default
You can’t perform that action at this time.
0 commit comments