Skip to content

Commit

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

modified:   .travis.yml
modified:   CHANGES.rst
modified:   setup.py
modified:   tox.ini
  • Loading branch information
jugmac00 committed Oct 3, 2019
1 parent 3396bde commit 125140a
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
15 changes: 8 additions & 7 deletions .travis.yml
@@ -1,25 +1,26 @@
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 zope.testrunner coverage coveralls
- pip install -U -e .[test,buildout]

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

after_success:
- coveralls

notifications:
email: false

cache: pip
4 changes: 3 additions & 1 deletion CHANGES.rst
Expand Up @@ -4,7 +4,9 @@ Changelog
1.2 (unreleased)
----------------

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

- Drop support for Python 3.4.


1.1 (2018-11-03)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -26,10 +26,10 @@
'Intended Audience :: Developers',
'License :: OSI Approved :: Zope Public License',
'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',
'Natural Language :: English',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,6 +1,6 @@
[tox]
envlist =
flake8,py27,py34,py35,py36,py37,pypy,pypy3,coverage
flake8,py27,py35,py36,py37,py38,pypy,pypy3,coverage

[testenv]
usedevelop = true
Expand Down

0 comments on commit 125140a

Please sign in to comment.