Skip to content

Commit

Permalink
Drop support for Python 3.4.
Browse files Browse the repository at this point in the history
Its test cannot be run any more because `zope.testrunner` no longer supports
Python 3.4
  • Loading branch information
Michael Howitz committed Mar 22, 2019
1 parent 4607802 commit 31442f3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
1 change: 0 additions & 1 deletion .travis.yml
@@ -1,7 +1,6 @@
language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
- pypy
Expand Down
4 changes: 3 additions & 1 deletion CHANGES.rst
Expand Up @@ -2,9 +2,11 @@
Changes
=========

4.4 (unreleased)
5.0 (unreleased)
================

- Drop support for Python 3.4.

- Fix test failures and deprecation warnings occurring when using Python 3.8a1.
(`#15 <https://github.com/zopefoundation/zope.tales/pull/15>`_)

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -32,7 +32,7 @@ def read(*rnames):
]

setup(name='zope.tales',
version='4.4.dev0',
version='5.0.dev0',
author='Zope Foundation and Contributors',
author_email='zope-dev@zope.org',
description='Zope Template Application Language Expression Syntax '
Expand All @@ -52,7 +52,6 @@ def read(*rnames):
'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 All @@ -68,6 +67,7 @@ def read(*rnames):
packages=find_packages('src'),
package_dir={'': 'src'},
namespace_packages=['zope'],
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*',
extras_require={
'test': TESTS_REQUIRE,
'tal': [
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,6 +1,6 @@
[tox]
envlist =
py27,py34,py35,py36,py37,py38,pypy,pypy3,coverage,docs
py27,py35,py36,py37,py38,pypy,pypy3,coverage,docs

[testenv]
commands =
Expand Down

0 comments on commit 31442f3

Please sign in to comment.