Commit db98fdf4 authored by Jason Madden's avatar Jason Madden

Drop support for Python 3.3

parent d7b5f03c
......@@ -9,8 +9,6 @@ matrix:
env: BUILOUT_OPTIONS=sphinx:eggs=
- os: linux
python: 2.7
- os: linux
python: 3.3
- os: linux
python: 3.4
- os: linux
......@@ -20,7 +18,7 @@ matrix:
install:
- pip install -U pip
- pip install zc.buildout
- buildout $BUILOUT_OPTIONS versions:sphinx=1.4.9
- buildout $BUILOUT_OPTIONS
script:
- if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then bin/coverage run bin/coverage-test -v1j99; fi
- if [[ $TRAVIS_PYTHON_VERSION == pypy* ]]; then bin/test -v1j99; fi
......
......@@ -2,10 +2,12 @@
Change History
================
5.2.5 (unreleased)
5.3.0 (unreleased)
==================
- Nothing changed yet.
- Add support for Python 3.6.
- Drop support for Python 3.3.
5.2.4 (2017-05-17)
......
[bdist_wheel]
universal = 1
......@@ -14,7 +14,7 @@
import os
from setuptools import setup, find_packages
version = '5.2.5.dev0'
version = '5.3.0.dev0'
classifiers = """\
Intended Audience :: Developers
......@@ -23,7 +23,6 @@ Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
......@@ -145,5 +144,7 @@ setup(
repozo = ZODB.scripts.repozo:main
""",
include_package_data=True,
# The pypy3 we test with on travis CI is still a Python 3.3
# implementation, so we don't explicitly blacklist 3.3 yet.
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*',
)
......@@ -2,7 +2,7 @@
# Jython 2.7rc2 does work, but unfortunately has an issue running
# with Tox 1.9.2 (http://bugs.jython.org/issue2325)
#envlist = py26,py27,py33,py34,pypy,simple,jython,pypy3
envlist = py27,py33,py34,py35,py36,pypy,simple,pypy3
envlist = py27,py34,py35,py36,pypy,simple,pypy3
[testenv]
# ZODB.tests.testdocumentation needs to find
......
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