Skip to content

Commit

Permalink
Add Python 3.8, drop Python 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Oct 28, 2019
1 parent b96a6db commit 198e990
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 16 deletions.
12 changes: 4 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
8 changes: 4 additions & 4 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -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:

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

version = '0.3.10.dev0'
version = '0.4.0.dev0'
__version__ = version

TESTS_REQUIRE = [
Expand All @@ -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",
],
Expand Down
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -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}

0 comments on commit 198e990

Please sign in to comment.