Skip to content

Commit

Permalink
Note explicit support for Python 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
felixonmars committed Nov 6, 2015
1 parent 7463e6d commit 311d113
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
@@ -1,5 +1,6 @@
language: python
sudo: false
python: "3.5"
env:
- TOXENV=py26
- TOXENV=py26-minimal
Expand All @@ -10,6 +11,8 @@ env:
- TOXENV=py33
- TOXENV=py34
- TOXENV=py34-pure
- TOXENV=py35
- TOXENV=py35-pure
- TOXENV=pypy3
- TOXENV=coverage
- TOXENV=docs
Expand Down
2 changes: 1 addition & 1 deletion CHANGES.rst
Expand Up @@ -4,7 +4,7 @@ Changes
4.2.3 (unreleased)
------------------

- TBD
- Claim support for Python 3.5.

4.2.2 (2015-06-04)
------------------
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -97,6 +97,7 @@ def read(*rnames):
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Framework :: Zope3",
Expand Down
8 changes: 7 additions & 1 deletion 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
# py26,py27,py32,jython,pypy,coverage,docs
py26,py26-minimal,py27,py27-pure,pypy,py32,py33,py34,py34-pure,pypy3,coverage,docs
py26,py26-minimal,py27,py27-pure,pypy,py32,py33,py34,py34-pure,py35,py35-pure,pypy3,coverage,docs

[mindeps]
deps =
Expand Down Expand Up @@ -42,6 +42,12 @@ basepython =
setenv =
PURE_PYTHON = 1

[testenv:py35-pure]
basepython =
python3.5
setenv =
PURE_PYTHON = 1

[testenv:py27-pure]
basepython =
python3.4
Expand Down

0 comments on commit 311d113

Please sign in to comment.