From b738d439464258f5374b5eb45cd8d0c81997500a Mon Sep 17 00:00:00 2001 From: Marius Gedminas Date: Tue, 30 Apr 2019 16:27:35 +0300 Subject: Drop Python 3.4 --- .travis.yml | 12 ++++-------- CHANGES.rst | 2 +- appveyor.yml | 2 -- setup.py | 5 ++--- tox.ini | 2 +- 5 files changed, 8 insertions(+), 15 deletions(-) diff --git a/.travis.yml b/.travis.yml index d674f54..9244184 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,16 +1,12 @@ language: python -sudo: false +dist: xenial python: - 2.7 - - 3.4 - 3.5 - 3.6 - - pypy -matrix: - include: - - python: 3.7 - dist: xenial - sudo: true + - 3.7 + - pypy2.7-6.0.0 + - pypy3.5-6.0.0 script: - coverage run -m zope.testrunner --test-path=src --auto-color --auto-progress diff --git a/CHANGES.rst b/CHANGES.rst index b16b108..06d9a1a 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -5,7 +5,7 @@ 4.3.2 (unreleased) ================== -- Nothing changed yet. +- Drop support for Python 3.4. 4.3.1 (2018-10-19) diff --git a/appveyor.yml b/appveyor.yml index f775534..2913229 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -7,8 +7,6 @@ environment: matrix: - python: 27 - python: 27-x64 - - python: 34 - - python: 34-x64 - python: 35 - python: 35-x64 - python: 36 diff --git a/setup.py b/setup.py index 8056916..4373e60 100644 --- a/setup.py +++ b/setup.py @@ -120,12 +120,11 @@ setup( '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 :: Implementation :: CPython", - "Programming Language :: Python :: Implementation :: PyPy", + 'Programming Language :: Python :: Implementation :: CPython', + 'Programming Language :: Python :: Implementation :: PyPy', 'Natural Language :: English', 'Operating System :: OS Independent', 'Topic :: Internet :: WWW/HTTP', diff --git a/tox.ini b/tox.ini index 5498583..78b2a54 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,pypy,pypy3,coverage,docs [testenv] deps = -- cgit v1.2.1 From f4cb5332dc24bf171937826cf949871665a5bedc Mon Sep 17 00:00:00 2001 From: Marius Gedminas Date: Tue, 30 Apr 2019 16:28:03 +0300 Subject: Bump major version Because we dropped support for Python 3.4 and some view that as a backwards-incompatible change. --- CHANGES.rst | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 06d9a1a..39e7fbc 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,7 +2,7 @@ Changes ========= -4.3.2 (unreleased) +5.0.0 (unreleased) ================== - Drop support for Python 3.4. diff --git a/setup.py b/setup.py index 4373e60..dea33ec 100644 --- a/setup.py +++ b/setup.py @@ -101,7 +101,7 @@ class optional_build_ext(build_ext): setup( name='zope.i18nmessageid', - version='4.3.2.dev0', + version='5.0.0.dev0', author='Zope Foundation and Contributors', author_email='zope-dev@zope.org', description='Message Identifiers for internationalization', -- cgit v1.2.1