Skip to content

Commit

Permalink
Merge pull request #64 from zopefoundation/python3.7support
Browse files Browse the repository at this point in the history
add python 3.7 support
  • Loading branch information
vernans committed Oct 2, 2018
2 parents d36d1e6 + 921ea01 commit 7c2b57c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .travis.yml
Expand Up @@ -4,24 +4,24 @@ python:
- 2.7
- 3.5
- 3.6

matrix:
include:
- python: "3.7"
dist: xenial
sudo: true
install:
- pip install six==1.10.0 # force here to avoid conflit with zc.recipe.testrunner
- pip install -U setuptools==33.1.1
- pip install coveralls coverage
- pip install zc.buildout
- buildout bootstrap
- buildout

script:
- coverage run bin/test -v1
after_success:
- coverage combine
- coveralls

notifications:
email: false

cache:
pip: true
directories:
Expand Down
1 change: 1 addition & 0 deletions CHANGES.rst
Expand Up @@ -11,6 +11,7 @@ For changes before version 3.0, see ``HISTORY.rst``.
- Fix order of roles returned by
``AccessControl.rolemanager.RoleManager.userdefined_roles``.

- Add support for Python 3.7.

4.0b4 (2018-04-16)
------------------
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -54,6 +54,7 @@
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
],
ext_modules=ext_modules,
Expand Down
1 change: 1 addition & 0 deletions tox.ini
Expand Up @@ -4,6 +4,7 @@ envlist =
py27,
py35,
py36,
py37,
# isort,
coverage-report,

Expand Down

0 comments on commit 7c2b57c

Please sign in to comment.