Commit a689cb8a authored by Tres Seaver's avatar Tres Seaver

Merge pull request #6 from zopefoundation/add-py35-support

Add support for Python 3.5.
parents 8f83bc7f b59f6cef
language: python language: python
sudo: false sudo: false
matrix:
include:
- python: 3.5
env: TOXENV=py35
env: env:
- TOXENV=py27 - TOXENV=py27
- TOXENV=pypy - TOXENV=pypy
......
...@@ -4,6 +4,8 @@ Changes ...@@ -4,6 +4,8 @@ Changes
4.2.0 (unreleased) 4.2.0 (unreleased)
------------------ ------------------
- Add support for Python 3.5.
- Drop support for Python 2.6. - Drop support for Python 2.6.
4.1.0 (2015-05-22) 4.1.0 (2015-05-22)
......
...@@ -105,6 +105,7 @@ setup(name='zope.container', ...@@ -105,6 +105,7 @@ setup(name='zope.container',
'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',
'Natural Language :: English', 'Natural Language :: English',
......
[tox] [tox]
envlist = py27,pypy,py33,py34,py27-zodb,pypy-zodb,py27-pure-zodb,docs envlist = py27,pypy,py33,py34,py35,py27-zodb,pypy-zodb,py27-pure-zodb,docs
[testenv] [testenv]
commands = python setup.py -q test -q commands = python setup.py -q test -q
...@@ -35,6 +35,7 @@ basepython = ...@@ -35,6 +35,7 @@ basepython =
python2.7 python2.7
setenv = setenv =
PURE_PYTHON = 1 PURE_PYTHON = 1
PIP_CACHE_DIR = {envdir}/.cache
deps = deps =
{[testenv]deps} {[testenv]deps}
ZODB ZODB
......
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