From 198e9903919d0f496a19c67fd00f9a7934908321 Mon Sep 17 00:00:00 2001 From: Marius Gedminas Date: Mon, 28 Oct 2019 09:52:43 +0200 Subject: [PATCH] Add Python 3.8, drop Python 3.4 --- .travis.yml | 12 ++++-------- CHANGES.rst | 8 ++++---- setup.py | 4 ++-- tox.ini | 5 +++-- 4 files changed, 13 insertions(+), 16 deletions(-) diff --git a/.travis.yml b/.travis.yml index 10f131e..a2bbd38 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,16 +1,12 @@ language: python -sudo: false python: - 2.7 - - pypy - - 3.4 - 3.5 - 3.6 -matrix: - include: - - python: "3.7" - dist: xenial - sudo: true + - 3.7 + - 3.8 + - pypy + - pypy3 install: - virtualenv . - bin/pip install zc.buildout diff --git a/CHANGES.rst b/CHANGES.rst index cdd2071..2ffb8b3 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,16 +1,16 @@ Changes ======= -0.3.10 (unreleased) -------------------- +0.4.0 (unreleased) +------------------ Breaking changes: -- *add item here* +- Drop support for Python 3.4. New features: -- *add item here* +- Add support for Python 3.8. Bug fixes: diff --git a/setup.py b/setup.py index 54034fa..7ab7e9a 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -version = '0.3.10.dev0' +version = '0.4.0.dev0' __version__ = version TESTS_REQUIRE = [ @@ -19,10 +19,10 @@ "Framework :: Zope :: 3", "Programming Language :: Python", "Programming Language :: Python :: 2.7", - "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", ], diff --git a/tox.ini b/tox.ini index 16bc1fd..8041c3b 100644 --- a/tox.ini +++ b/tox.ini @@ -1,10 +1,11 @@ [tox] envlist = - py27, pypy, py34, py35, py36, py37 + py27, py35, py36, py37, py38, pypy, pypy3 [testenv] deps = zope.testrunner - .[test] +extras = + test commands = zope-testrunner --test-path=src {posargs:-pvc}