Commit 681861b9 authored by Jason Madden's avatar Jason Madden Committed by GitHub

Merge pull request #74 from zopefoundation/py37

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