Skip to content

Commit

Permalink
Modernize Python versions.
Browse files Browse the repository at this point in the history
- Add support for Python 3.8.

- Drop support for Python 3.4.

modified:   .travis.yml
modified:   CHANGES.rst
modified:   setup.py
modified:   tox.ini
  • Loading branch information
jugmac00 committed May 14, 2020
1 parent b930fed commit 89a42fd
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
12 changes: 5 additions & 7 deletions .travis.yml
@@ -1,22 +1,20 @@
language: python
sudo: false

python:
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7
- 3.8
- pypy
- pypy3
matrix:
include:
- python: "3.7"
dist: xenial
sudo: true

script:
- coverage run -m zope.testrunner --test-path=src --auto-color --auto-progress

after_success:
- coveralls

notifications:
email: false

Expand Down
4 changes: 3 additions & 1 deletion CHANGES.rst
Expand Up @@ -5,7 +5,9 @@
2.2.1 (unreleased)
==================

- Nothing changed yet.
- Add support for Python 3.8.

- Drop support for Python 3.4.


2.2.0 (2018-10-19)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -76,10 +76,10 @@ 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',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Natural Language :: English',
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
@@ -1,6 +1,6 @@
[tox]
envlist =
py27, pypy, py34, py35, py36, py37, coverage
py27, pypy, py35, py36, py37, py38, pypy3, coverage

[testenv]
commands =
Expand All @@ -11,7 +11,7 @@ extras = test
[testenv:coverage]
usedevelop = true
basepython =
python3.6
python3
commands =
coverage run -m zope.testrunner --test-path=src
coverage report --fail-under=100
Expand Down

0 comments on commit 89a42fd

Please sign in to comment.