From 2f313a15c4e756723940293b9568be6329f9010f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Gmach?= Date: Wed, 2 Oct 2019 08:56:26 +0200 Subject: Modernize Python versions. - add support for Python 3.8. - drop support for Python 3.4. - bump version number. modified: .travis.yml modified: CHANGES.rst modified: setup.py modified: tox.ini --- .travis.yml | 9 ++------- CHANGES.rst | 6 ++++-- setup.py | 4 ++-- tox.ini | 2 +- 4 files changed, 9 insertions(+), 12 deletions(-) diff --git a/.travis.yml b/.travis.yml index b2ff47d..0c90366 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,17 +1,12 @@ language: python -sudo: false python: - 2.7 - - 3.4 - 3.5 - 3.6 + - 3.7 + - 3.8-dev - pypy - pypy3 -matrix: - include: - - python: "3.7" - dist: xenial - sudo: true install: - pip install -U pip setuptools - pip install -U coverage coveralls diff --git a/CHANGES.rst b/CHANGES.rst index 8f7204e..b5488f8 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,10 +2,12 @@ Changes ========= -4.4.2 (unreleased) +4.5.0 (unreleased) ================== -- Nothing changed yet. +- Add support for Python 3.8. + +- Drop support for Python 3.4. 4.4.1 (2018-10-16) diff --git a/setup.py b/setup.py index 50af8ce..81fdab0 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ TESTS_REQUIRE = [ setup(name='zope.pagetemplate', - version='4.4.2.dev0', + version='4.5.0.dev0', author='Zope Foundation and Contributors', author_email='zope-dev@zope.org', description='Zope Page Templates', @@ -54,10 +54,10 @@ setup(name='zope.pagetemplate', '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', + 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', 'Natural Language :: English', diff --git a/tox.ini b/tox.ini index 3d3605b..4d06ccf 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] envlist = - py27,py34,py35,py36,py37,pypy,pypy3,coverage,docs + py27,py35,py36,py37,py38,pypy,pypy3,coverage,docs [testenv] commands = -- cgit v1.2.1