Skip to content

Commit

Permalink
Added support for python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
vernans committed Oct 2, 2018
1 parent dd45554 commit e4192ff
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
11 changes: 9 additions & 2 deletions .travis.yml
Expand Up @@ -5,15 +5,22 @@ python:
- 3.4
- 3.5
- 3.6
matrix:
include:
- python: "3.7"
dist: xenial
sudo: true
install:
- pip install -U setuptools==33.1.1
- pip install coveralls coverage
- pip install zc.buildout
- pip install flake8
- buildout bootstrap
- buildout
script:
- bin/test -v1
- coverage bin/test -v1
- flake8 --doctests src setup.py
after_success:
- coveralls
notifications:
email: false
cache:
Expand Down
1 change: 1 addition & 0 deletions CHANGES.rst
Expand Up @@ -10,6 +10,7 @@ Changelog

- Avoid deprecation warnings by using current API.

- Added support for Python 3.7.

4.0.0 (2017-05-23)
------------------
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -40,6 +40,7 @@
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Expand Up @@ -4,6 +4,7 @@ envlist =
py34,
py35,
py36,
py37,
flake8,

[testenv]
Expand All @@ -13,7 +14,6 @@ commands =
{envbindir}/test -v1
skip_install = true
deps =
setuptools==33.1.1
zc.buildout

[testenv:flake8]
Expand Down

0 comments on commit e4192ff

Please sign in to comment.