Skip to content

Commit

Permalink
- cleanup: remove references to obsolete Python 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
dataflake committed Jul 25, 2020
1 parent bab110c commit 763ebc9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ matrix:
python: 2.7
- os: linux
python: pypy
- os: linux
python: 3.4
- os: linux
python: 3.5
- os: linux
Expand Down
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ Changelog
5.2.2 (unreleased)
------------------

- Remove support for Python 3.4

- Provide proper CA test certificates to allow the SSL tests succeed for Py3

- Replace deprecated occurences of ``Thread.isAlive()`` by ``Thread.is_alive()``
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Expand Down Expand Up @@ -157,5 +156,5 @@ def emit(self, record):
zeo-nagios = ZEO.nagios:main
""",
include_package_data=True,
python_requires='>=2.7.9,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*',
python_requires='>=2.7.9,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*',
)
8 changes: 5 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py27,py34,py35,py36,py37,pypy,pypy3,simple,docs
py27,py35,py36,py37,pypy,pypy3,simple,docs

[testenv]
commands =
Expand All @@ -24,16 +24,18 @@ deps =
msgpack <0.6
# ZopeUndo is needed as soft-dependency for a regression test
ZopeUndo

[testenv:simple]
# Test that 'setup.py test' works
basepython =
python3.4
python3.6
commands =
python setup.py -q test -q
deps = {[testenv]deps}

[testenv:docs]
basepython =
python3.8
python3.6
commands =
sphinx-build -b html doc doc/_build/html
extras =
Expand Down

0 comments on commit 763ebc9

Please sign in to comment.