Skip to content

Commit

Permalink
Add support for Python 3.7, 3.8a4 and PyPy3.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Howitz committed May 25, 2019
1 parent 953ebf0 commit 836654f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,29 @@
language: python
sudo: false
dist: xenial

python:
- 2.7
- 3.5
- 3.6
- 3.7
- 3.8-dev
- pypy
- pypy3

matrix:
include:
- python: 3.6
name: "Flake8"
install: pip install -U flake8
script: flake8 --doctests src setup.py
after_success:

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

after_success:
- coveralls

notifications:
email: false

Expand All @@ -25,7 +32,6 @@ install:
- pip install -U coveralls coverage
- pip install -U -e ".[test,zcml,extract]"


cache: pip

before_cache:
Expand Down
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ CHANGES

- Flake8 the code.

- Add support for Python 3.7, 3.8a4 and PyPy3.


4.0.1 (2018-06-29)
------------------
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ def read(*rnames):
'Programming Language :: Python :: 3',
'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

0 comments on commit 836654f

Please sign in to comment.