Skip to content

Commit

Permalink
Drop Python 3.3 and add Python 3.7. Fixes #81.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamadden committed Mar 9, 2018
1 parent ca8d390 commit f80339f
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 11 deletions.
4 changes: 1 addition & 3 deletions .manylinux-install.sh
Expand Up @@ -5,18 +5,16 @@ set -e -x
# Compile wheels
for PYBIN in /opt/python/*/bin; do
if [[ "${PYBIN}" == *"cp27"* ]] || \
[[ "${PYBIN}" == *"cp33"* ]] || \
[[ "${PYBIN}" == *"cp34"* ]] || \
[[ "${PYBIN}" == *"cp35"* ]] || \
[[ "${PYBIN}" == *"cp36"* ]]; then
"${PYBIN}/pip" install -e /io/
"${PYBIN}/pip" wheel /io/ -w wheelhouse/
rm -rf /io/build /io/*.egg-info
rm -rf /io/build /io/*.egg-info
fi
done

# Bundle external shared libraries into the wheels
for whl in wheelhouse/BTrees*.whl; do
auditwheel repair "$whl" -w /io/wheelhouse/
done

4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -7,14 +7,14 @@ matrix:
- os: linux
python: 2.7
env: PURE_PYTHON=1
- os: linux
python: 3.3
- os: linux
python: 3.4
- os: linux
python: 3.5
- os: linux
python: 3.6
- os: linux
python: 3.7-dev
- os: linux
python: 3.6
env: PURE_PYTHON=1
Expand Down
5 changes: 3 additions & 2 deletions CHANGES.rst
@@ -1,10 +1,11 @@
``BTrees`` Changelog
====================

4.4.2 (unreleased)
4.5.0 (unreleased)
------------------

- Add support for Python 3.6.
- Add support for Python 3.6 and 3.7.
- Drop support for Python 3.3.
- Raise an ``ImportError`` consistently on Python 3 if the C extension for
BTrees is used but the ``persistent`` C extension is not available.
Previously this could result in an odd ``AttributeError``. See
Expand Down
2 changes: 0 additions & 2 deletions appveyor.yml
Expand Up @@ -7,8 +7,6 @@ environment:
matrix:
- python: 27
- python: 27-x64
- python: 33
- python: 33-x64
- python: 34
- python: 34-x64
- python: 35
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -153,10 +153,10 @@ def BTreeExtension(family):
'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",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Expand Up @@ -3,7 +3,7 @@ envlist =
# Jython support pending 2.7 support, due 2012-07-15 or so. See:
# http://fwierzbicki.blogspot.com/2012/03/adconion-to-fund-jython-27.html
# py27,jython,pypy,coverage,docs
py27,py27-pure,pypy,py33,py34,py35,py35-pure,py36,pypy3,w_zodb,coverage,docs
py27,py27-pure,pypy,py34,py35,py35-pure,py36,py37,pypy3,w_zodb,coverage,docs

[testenv]
usedevelop = true
Expand Down

0 comments on commit f80339f

Please sign in to comment.