Skip to content

Commit f498cee

Browse files
committed
Added testing for Python 3.8.
1 parent 33143ff commit f498cee

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

.travis.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,16 @@ matrix:
4242
env: TOXENV=py37-django-31
4343
- python: 3.7
4444
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
4551
allow_failures:
4652
- env: TOXENV=py36-django-master
4753
- env: TOXENV=py37-django-master
54+
- env: TOXENV=py38-django-master
4855
install:
4956
- pip install tox
5057
script:

HISTORY.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ X.Y.Z (YYYY-MM-DD)
1010
* Renamed zh_CN to zh_Hans and zh_TW to zh_Hant to match
1111
Django Chinese translations naming.
1212
* Confirmed support for Django 3.1.
13+
* Confirmed support for Python 3.8.
1314

1415
1.9.2 (2019-12-03)
1516
------------------

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
'Programming Language :: Python :: 3',
3838
'Programming Language :: Python :: 3.6',
3939
'Programming Language :: Python :: 3.7',
40+
'Programming Language :: Python :: 3.8',
4041
],
4142
packages=find_packages(exclude=['tests', 'tests.*']),
4243
include_package_data=True,

tox.ini

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,17 @@ envlist =
44
py3{4,5,6,7}-django20
55
py3{5,6,7}-django21
66
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
1010

1111
[testenv]
1212
basepython =
1313
py34: python3.4
1414
py35: python3.5
1515
py36: python3.6
1616
py37: python3.7
17+
py38: python3.8
1718
commands = {envpython} setup.py test
1819
setenv=
1920
PYTHONWARNINGS=default

0 commit comments

Comments
 (0)