Skip to content

Commit

Permalink
Added support for Python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
syrusakbary committed Jul 19, 2018
1 parent 8d1d8c4 commit a7ce75e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ matrix:
python: 3.5
- env: TOXENV=py36
python: 3.6
# - env: TOXENV=py37
# python: 3.7
- env: TOXENV=pypy
python: pypy-5.7.1
- env: TOXENV=pre-commit
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ def run_tests(self):
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: OSI Approved :: MIT License",
"Topic :: Database :: Front-Ends",
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27,py34,py35,py36,pre-commit,pypy,mypy,docs
envlist = py27,py34,py35,py36,py37,pre-commit,pypy,mypy,docs

[testenv]
deps =
Expand All @@ -11,7 +11,7 @@ deps =
pytest-benchmark
commands =
py{27,34,py}: py.test graphql tests {posargs}
py{35,36}: py.test graphql tests tests_py35 {posargs}
py{35,36,37}: py.test graphql tests tests_py35 {posargs}

[testenv:pre-commit]
basepython=python3.6
Expand Down

0 comments on commit a7ce75e

Please sign in to comment.