Skip to content

Commit e05952b

Browse files
committed
Added Python 3.7 testing.
1 parent 5247a63 commit e05952b

File tree

5 files changed

+29
-9
lines changed

5 files changed

+29
-9
lines changed

.travis.yml

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,28 @@ matrix:
2727
- python: '3.6'
2828
dist: xenial
2929
env: TOXENV=py36-djangomaster-test
30-
- python: '3.6'
31-
env: TOXENV=py36-isort
32-
- python: '3.6'
33-
env: TOXENV=py36-flake
30+
- python: '3.7'
31+
env: TOXENV=py37-django111-test
32+
- python: '3.7'
33+
env: TOXENV=py37-django20-test
34+
- python: '3.7'
35+
env: TOXENV=py37-django21-test
36+
- python: '3.7'
37+
dist: xenial
38+
env: TOXENV=py37-django22-test
39+
- python: '3.7'
40+
dist: xenial
41+
env: TOXENV=py37-django30-test
42+
- python: '3.7'
43+
dist: xenial
44+
env: TOXENV=py37-djangomaster-test
45+
- python: '3.7'
46+
env: TOXENV=py37-isort
47+
- python: '3.7'
48+
env: TOXENV=py37-flake
3449
allow_failures:
3550
- env: TOXENV=py36-djangomaster-test
51+
- env: TOXENV=py37-djangomaster-test
3652
install:
3753
- pip install coveralls tox>=2.1
3854
script:

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
### Enhancements
66

7+
* Confirms support for Python 3.7.
8+
79
* Confirms support for Django 3.0.
810

911
* Confirms support for Django 2.2.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To find the request overview page, please click on Requests inside the admin, th
1818
Requirements
1919
------------
2020

21-
* **Python**: 2.7, 3.4, 3.6
21+
* **Python**: 2.7, 3.4, 3.6, 3.7
2222
* **Django**: 1.10, 1.11, 2.0, 2.1, 2.2, 3.0
2323
* **python-dateutil**
2424
* **six**

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,6 @@
5252
'Programming Language :: Python :: 3',
5353
'Programming Language :: Python :: 3.4',
5454
'Programming Language :: Python :: 3.6',
55+
'Programming Language :: Python :: 3.7',
5556
],
5657
)

tox.ini

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
[tox]
22
envlist =
33
{py27,py34}-django110-test,
4-
{py27,py34,py36}-django111-test,
5-
{py34,py36}-django20-test,
6-
py36-django{21,22,30,master}-test,
7-
py36-{isort,flake},
4+
{py27,py34,py36,py37}-django111-test,
5+
{py34,py36,py37}-django20-test,
6+
{py36,py37}-django{21,22,30,master}-test,
7+
py37-{isort,flake},
88

99
[testenv]
1010
basepython =
1111
py27: python2.7
1212
py34: python3.4
1313
py36: python3.6
14+
py37: python3.7
1415
commands =
1516
test: coverage run ./runtests.py
1617
isort: isort --recursive --check-only --diff request tests setup.py runtests.py

0 commit comments

Comments
 (0)