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

Add support for Python 3.5.

parent e85b3fae
...@@ -4,11 +4,12 @@ python: ...@@ -4,11 +4,12 @@ python:
- 2.7 - 2.7
- 3.3 - 3.3
- 3.4 - 3.4
- 3.5
- pypy - pypy
- pypy3 - pypy3
install: install:
- pip install . - pip install .
script: script:
- python setup.py test -q - python setup.py -q test -q
notifications: notifications:
email: false email: false
...@@ -7,6 +7,8 @@ ...@@ -7,6 +7,8 @@
- When testing ``PURE_PYTHON`` environments under ``tox``, avoid poisoning - When testing ``PURE_PYTHON`` environments under ``tox``, avoid poisoning
the user's global wheel cache. the user's global wheel cache.
- Add support for Python 3.5.
- Drop support for Python 2.6 and 3.2. - Drop support for Python 2.6 and 3.2.
4.1.1 (2015-06-02) 4.1.1 (2015-06-02)
......
...@@ -83,6 +83,7 @@ setup(name='persistent', ...@@ -83,6 +83,7 @@ setup(name='persistent',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
"Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy", "Programming Language :: Python :: Implementation :: PyPy",
"Framework :: ZODB", "Framework :: ZODB",
......
...@@ -3,7 +3,7 @@ envlist = ...@@ -3,7 +3,7 @@ envlist =
# Jython 2.7rc2 does work, but unfortunately has an issue running # Jython 2.7rc2 does work, but unfortunately has an issue running
# with Tox 1.9.2 (http://bugs.jython.org/issue2325) # with Tox 1.9.2 (http://bugs.jython.org/issue2325)
# py27,py27-pure,pypy,py33,py34,pypy3,jython,coverage,docs # 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] [testenv]
deps = 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