Skip to content

Commit

Permalink
Add support for Python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
vernans committed Oct 5, 2018
1 parent f31fcb1 commit ea33242
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGES.rst
Expand Up @@ -5,7 +5,7 @@
4.1.1 (unreleased)
==================

- Nothing changed yet.
- Add support for Python 3.7.


4.1.0 (2017-08-03)
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -67,6 +67,7 @@ def read(*rnames):
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Natural Language :: English',
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Expand Up @@ -3,7 +3,7 @@ envlist =
# Jython support pending 2.7 support, due 2012-07-15 or so. See:
# http://fwierzbicki.blogspot.com/2012/03/adconion-to-fund-jython-27.html
# py27,jython,pypy,coverage
py27,py34,py35,py36,pypy,pypy3,coverage
py27,py34,py35,py36,py37,pypy,pypy3,coverage

[testenv]
commands =
Expand All @@ -19,7 +19,7 @@ commands =
[testenv:coverage]
usedevelop = true
basepython =
python2.7
python3.7
commands =
coverage run -m zope.testrunner --test-path=src
coverage run -a -m sphinx -b doctest -d {envdir}/.cache/doctrees docs {envdir}/.cache/doctest
Expand All @@ -31,7 +31,7 @@ deps =

[testenv:docs]
basepython =
python2.7
python3.6
commands =
sphinx-build -b html -d docs/_build/doctrees docs docs/_build/html
sphinx-build -b doctest -d docs/_build/doctrees docs docs/_build/doctest
Expand Down

0 comments on commit ea33242

Please sign in to comment.