Skip to content

Commit 7d2fd06

Browse files
authored
Support Python 3.7 (#576)
1 parent 0e7fc3b commit 7d2fd06

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.travis.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,16 @@ dist: trusty
55
jobs:
66
fast_finish: true
77
include:
8+
# py37 is not available in trusty dist, and requires sudo=true with xenial.
9+
- python: 3.7
10+
env: TOXENV=py37-dj21-sqlite
11+
dist: xenial
12+
sudo: true
13+
814
- python: 3.6
915
env: TOXENV=py36-djmaster-postgres
1016
- python: 3.6
1117
env: TOXENV=py36-dj20-postgres
12-
- python: 3.6
13-
env: TOXENV=py36-dj21-postgres
1418
- python: 3.6
1519
env: TOXENV=py36-dj111-sqlite
1620

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ pytest-django allows you to test your Django project/applications with the
3030

3131
* Django: 1.8-1.11, 2.0-2.1,
3232
and latest master branch (compatible at the time of each release)
33-
* Python: CPython 2.7, 3.4-3.6 or PyPy 2, 3
33+
* Python: CPython 2.7, 3.4-3.7 or PyPy 2, 3
3434
* pytest: >=3.6
3535

3636
* Licence: BSD

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ def read(fname):
5353
'Programming Language :: Python :: 3.4',
5454
'Programming Language :: Python :: 3.5',
5555
'Programming Language :: Python :: 3.6',
56+
'Programming Language :: Python :: 3.7',
5657
'Programming Language :: Python :: Implementation :: CPython',
5758
'Programming Language :: Python :: Implementation :: PyPy',
5859
'Topic :: Software Development :: Testing',

0 commit comments

Comments
 (0)