Commit 247283f0 authored by Tres Seaver's avatar Tres Seaver

Add support for Python 3.5.

parent e85b3fae
......@@ -4,11 +4,12 @@ python:
- 2.7
- 3.3
- 3.4
- 3.5
- pypy
- pypy3
install:
- pip install .
script:
- python setup.py test -q
- python setup.py -q test -q
notifications:
email: false
......@@ -7,6 +7,8 @@
- When testing ``PURE_PYTHON`` environments under ``tox``, avoid poisoning
the user's global wheel cache.
- Add support for Python 3.5.
- Drop support for Python 2.6 and 3.2.
4.1.1 (2015-06-02)
......
......@@ -83,6 +83,7 @@ setup(name='persistent',
'Programming Language :: Python :: 3',
'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 :: ZODB",
......
......@@ -3,7 +3,7 @@ envlist =
# Jython 2.7rc2 does work, but unfortunately has an issue running
# with Tox 1.9.2 (http://bugs.jython.org/issue2325)
# py27,py27-pure,pypy,py33,py34,pypy3,jython,coverage,docs
py27,py27-pure,py27-pure-cffi,pypy,py33,py34,pypy3,coverage,docs
py27,py27-pure,py27-pure-cffi,pypy,py33,py34,py35,pypy3,coverage,docs
[testenv]
deps =
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment