Skip to content

Commit

Permalink
Support Python 3.6.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Howitz committed Jun 2, 2017
1 parent ada731c commit f316225
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .coveragerc
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,5 @@ precision = 2
[paths]
source =
src/
.tox/py*/lib/python*/site-packages/
.tox/nobtree/lib/python*/site-packages/
.tox/*/lib/python*/site-packages/
.tox/pypy*/site-packages/
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
*.egg-info
*.pyc
.coverage
.coverage.*
.tox/
__pycache__
coverage.xml
Expand Down
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ python:
- 3.3
- 3.4
- 3.5
- 3.6
- pypy-5.4.1
install:
- pip install -U pip setuptools zope.testrunner
Expand Down
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Changes

- Drop support for Python 2.6.

- Claim support for Python 3.5.
- Claim support for Python 3.5 and 3.6.


4.4.1 (2015-01-09)
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ def read(*rnames):
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Natural Language :: English',
Expand Down
10 changes: 10 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ envlist =
py33,
py34,
py35,
py36,
pypy,
pypy3,
nobtree,
nobtree3,
docs,
coverage,

Expand All @@ -28,6 +30,14 @@ deps =
zope.testrunner
coverage

[testenv:nobtree3]
basepython =
python3.6
deps =
.[test]
zope.testrunner
coverage

[testenv:docs]
basepython =
python2.7
Expand Down

0 comments on commit f316225

Please sign in to comment.