Skip to content

Commit

Permalink
Merge pull request #110 from zopefoundation/roto-drop-py33
Browse files Browse the repository at this point in the history
Drop testing and pypi-declared support of Python 3.3
  • Loading branch information
Rotonen committed Dec 29, 2017
2 parents 485fdd7 + 3e3e37e commit c9716a3
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 15 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/zope.interface*.whl; do
auditwheel repair "$whl" -w /io/wheelhouse/
done

2 changes: 0 additions & 2 deletions .travis.yml
Expand Up @@ -4,8 +4,6 @@ matrix:
include:
- os: linux
python: 2.7
- os: linux
python: 3.3
- os: linux
python: 3.4
- os: linux
Expand Down
4 changes: 3 additions & 1 deletion CHANGES.rst
@@ -1,9 +1,11 @@
Changes
=======

4.4.4 (unreleased)
4.5.0 (unreleased)
------------------

- Drop support for 3.3, avoid accidental dependence breakage via setup.py.
See `PR 110 <https://github.com/zopefoundation/zope.interface/pull/110>`_.
- Allow registering and unregistering instance methods as listeners.
See `issue 12 <https://github.com/zopefoundation/zope.interface/issues/12>`_
and `PR 102 <https://github.com/zopefoundation/zope.interface/pull/102>`_.
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
7 changes: 3 additions & 4 deletions docs/hacking.rst
Expand Up @@ -212,10 +212,9 @@ configured commands.
:mod:`zope.interface` configures the following :mod:`tox` environments via
its ``tox.ini`` file:

- The ``py26``, ``py27``, ``py33``, ``py34``, and ``pypy`` environments
builds a ``virtualenv`` with ``pypy``,
installs :mod:`zope.interface` and dependencies, and runs the tests
via ``python setup.py test -q``.
- The defined Python environments build a ``virtualenv`` with various Python 2,
Python 3, PyPy 2 and PyPy 3 versions, install :mod:`zope.interface` and
dependencies, and run the tests via ``python setup.py test -q``.

- The ``coverage`` environment builds a ``virtualenv`` with ``python2.7``,
installs :mod:`zope.interface` and dependencies, installs
Expand Down
10 changes: 8 additions & 2 deletions setup.py
Expand Up @@ -97,7 +97,7 @@ def read(*rnames):
)

setup(name='zope.interface',
version='4.4.4.dev0',
version='4.5.0.dev0',
url='https://github.com/zopefoundation/zope.interface',
license='ZPL 2.1',
description='Interfaces for Python',
Expand All @@ -113,7 +113,6 @@ def read(*rnames):
"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",
Expand All @@ -133,6 +132,13 @@ def read(*rnames):
zip_safe=False,
tests_require=tests_require,
install_requires=['setuptools'],
python_requires=', '.join((
'>=2.7',
'!=3.0.*',
'!=3.1.*',
'!=3.2.*',
'!=3.3.*',
)),
extras_require={
'docs': ['Sphinx', 'repoze.sphinx.autointerface'],
'test': tests_require,
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,6 +1,6 @@
[tox]
envlist =
py27,py27-pure,py33,py34,py34-pure,py35,py36,pypy,pypy3,coverage,docs
py27,py27-pure,py34,py34-pure,py35,py36,pypy,pypy3,coverage,docs

[testenv]
commands =
Expand Down

0 comments on commit c9716a3

Please sign in to comment.