Skip to content

Commit a7ce75e

Browse files
committed
Added support for Python 3.7
1 parent 8d1d8c4 commit a7ce75e

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.travis.yml

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ matrix:
88
python: 3.5
99
- env: TOXENV=py36
1010
python: 3.6
11+
# - env: TOXENV=py37
12+
# python: 3.7
1113
- env: TOXENV=pypy
1214
python: pypy-5.7.1
1315
- env: TOXENV=pre-commit

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,10 @@ def run_tests(self):
6565
"Programming Language :: Python :: 2",
6666
"Programming Language :: Python :: 2.7",
6767
"Programming Language :: Python :: 3",
68-
"Programming Language :: Python :: 3.3",
6968
"Programming Language :: Python :: 3.4",
7069
"Programming Language :: Python :: 3.5",
7170
"Programming Language :: Python :: 3.6",
71+
"Programming Language :: Python :: 3.7",
7272
"Programming Language :: Python :: Implementation :: PyPy",
7373
"License :: OSI Approved :: MIT License",
7474
"Topic :: Database :: Front-Ends",

tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27,py34,py35,py36,pre-commit,pypy,mypy,docs
2+
envlist = py27,py34,py35,py36,py37,pre-commit,pypy,mypy,docs
33

44
[testenv]
55
deps =
@@ -11,7 +11,7 @@ deps =
1111
pytest-benchmark
1212
commands =
1313
py{27,34,py}: py.test graphql tests {posargs}
14-
py{35,36}: py.test graphql tests tests_py35 {posargs}
14+
py{35,36,37}: py.test graphql tests tests_py35 {posargs}
1515

1616
[testenv:pre-commit]
1717
basepython=python3.6

0 commit comments

Comments
 (0)