Commit 381cca61 authored by Jason Madden's avatar Jason Madden

Add support for Python 3.7 and drop 3.3

parent 4947d6ed
......@@ -8,7 +8,8 @@ for PYBIN in /opt/python/*/bin; do
[[ "${PYBIN}" == *"cp33"* ]] || \
[[ "${PYBIN}" == *"cp34"* ]] || \
[[ "${PYBIN}" == *"cp35"* ]] || \
[[ "${PYBIN}" == *"cp36"* ]]; then
[[ "${PYBIN}" == *"cp36"* ]] || \
[[ "${PYBIN}" == *"cp37"* ]]; then
"${PYBIN}/pip" install -e /io/
"${PYBIN}/pip" wheel /io/ -w wheelhouse/
rm -rf /io/build /io/*.egg-info
......@@ -19,4 +20,3 @@ done
for whl in wheelhouse/persistent*.whl; do
auditwheel repair "$whl" -w /io/wheelhouse/
done
......@@ -4,8 +4,6 @@ matrix:
include:
- os: linux
python: 2.7
- os: linux
python: 3.3
- os: linux
python: 3.4
- os: linux
......@@ -16,6 +14,10 @@ matrix:
python: pypy
- os: linux
python: pypy3
- os: linux
dist: xenial
sudo: true
python: 3.7
# It's important to use 'macpython' builds to get the least
# restrictive wheel tag. It's also important to avoid
# 'homebrew 3' because it floats instead of being a specific version.
......@@ -31,6 +33,9 @@ matrix:
- os: osx
language: generic
env: TERRYFY_PYTHON='macpython 3.6.0'
- os: osx
language: generic
env: TERRYFY_PYTHON='macpython 3.7'
- services:
- docker
env: DOCKER_IMAGE=quay.io/pypa/manylinux1_x86_64
......
......@@ -4,7 +4,7 @@
4.3.1 (unreleased)
------------------
- Nothing changed yet.
- Add support for Python 3.7 and drop support for Python 3.3.
4.3.0 (2018-07-30)
......
......@@ -7,15 +7,14 @@ environment:
matrix:
- python: 27
- python: 27-x64
- python: 33
- python: 33-x64
- python: 34
- python: 34-x64
- python: 35
- python: 35-x64
- python: 36
- python: 36-x64
- python: 37
- python: 37-x64
install:
- "SET PATH=C:\\Python%PYTHON%;c:\\Python%PYTHON%\\scripts;%PATH%"
- echo "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64 > "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\amd64\vcvars64.bat"
......
......@@ -91,10 +91,10 @@ setup(name='persistent',
'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',
'Programming Language :: Python :: 3.7',
"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,py35,py36,pypy3,coverage,docs
py27,py27-pure,py27-pure-cffi,pypy,py34,py35,py36,py37,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