Skip to content

Commit

Permalink
Add support for Python 3.8
Browse files Browse the repository at this point in the history
Also let's use the latest floating PyPy versions on Travis CI.
  • Loading branch information
mgedmin committed Nov 12, 2019
1 parent e906781 commit 9d4230e
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 12 deletions.
23 changes: 12 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,28 @@
language: python
dist: xenial

python:
- 2.7
- 3.5
- 3.6
- 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

after_success:
- coveralls
notifications:
email: false
- 3.8
- pypy
- pypy3

install:
- pip install -U pip setuptools
- pip install -U coveralls coverage zope.testrunner
- pip install -U -e ".[test]"

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

cache: pip
after_success:
- coveralls

notifications:
email: false

cache: pip
before_cache:
- rm -f $HOME/.cache/pip/log/debug.log
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@

- Drop support for Python 3.4.

- Add support for Python 3.8.


4.3.1 (2018-10-19)
==================
Expand Down
2 changes: 2 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ environment:
- python: 36-x64
- python: 37
- python: 37-x64
- python: 38
- python: 38-x64

install:
- "SET PATH=C:\\Python%PYTHON%;c:\\Python%PYTHON%\\scripts;%PATH%"
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ def _unavailable(self, e):
'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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py27,py35,py36,py37,pypy,pypy3,coverage,docs
py27,py35,py36,py37,py38,pypy,pypy3,coverage,docs

[testenv]
deps =
Expand Down

0 comments on commit 9d4230e

Please sign in to comment.