Skip to content

Commit c3cd251

Browse files
committed
Support Python 3.7
1 parent be42484 commit c3cd251

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.travis.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ dist: trusty
55
jobs:
66
fast_finish: true
77
include:
8-
- python: 3.6
9-
env: TOXENV=py36-djmaster-postgres
8+
- python: 3.7
9+
env: TOXENV=py37-djmaster-postgres
10+
1011
- python: 3.6
1112
env: TOXENV=py36-dj20-postgres
1213
- python: 3.6
@@ -51,7 +52,7 @@ jobs:
5152
distributions: "sdist bdist_wheel"
5253

5354
allow_failures:
54-
- env: TOXENV=py36-djmaster-postgres
55+
- env: TOXENV=py37-djmaster-postgres
5556

5657
install:
5758
# Create pip wrapper script, using travis_retry (a function) and

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)