Skip to content

Commit 1211daf

Browse files
committed
Support Python 3.7
1 parent 5da0935 commit 1211daf

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
matrix:
66
fast_finish: true
77
include:
8-
- python: 3.6
9-
env: TOXENV=py36-djmaster-postgres
8+
- python: 3.7-dev
9+
env: TOXENV=py37-djmaster-postgres
10+
1011
- python: 3.6
1112
env: TOXENV=py36-dj20-postgres
1213
- python: 3.6
@@ -35,7 +36,7 @@ matrix:
3536
env: TOXENV=checkqa
3637

3738
allow_failures:
38-
- env: TOXENV=py36-djmaster-postgres
39+
- env: TOXENV=py37-djmaster-postgres
3940

4041
install:
4142
# 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
@@ -29,7 +29,7 @@ pytest-django allows you to test your Django project/applications with the
2929
* Version compatibility:
3030

3131
* Django: 1.8-1.11, 2.0 and latest master branch (compatible at the time of each release)
32-
* Python: CPython 2.7, 3.4-3.6 or PyPy 2, 3
32+
* Python: CPython 2.7, 3.4-3.7 or PyPy 2, 3
3333
* pytest: >2.9.x
3434

3535
* Licence: BSD

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ def read(fname):
4646
'Programming Language :: Python :: 3.4',
4747
'Programming Language :: Python :: 3.5',
4848
'Programming Language :: Python :: 3.6',
49+
'Programming Language :: Python :: 3.7',
4950
'Programming Language :: Python :: Implementation :: CPython',
5051
'Programming Language :: Python :: Implementation :: PyPy',
5152
'Topic :: Software Development :: Testing',

0 commit comments

Comments
 (0)