Skip to content

Commit

Permalink
Merge 0801233 into dd45554
Browse files Browse the repository at this point in the history
  • Loading branch information
vernans committed Oct 2, 2018
2 parents dd45554 + 0801233 commit d382078
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .coveragerc
@@ -0,0 +1,6 @@
[run]
branch = True
source = src

[report]
precision = 2
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 run 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
3 changes: 2 additions & 1 deletion tox.ini
Expand Up @@ -4,7 +4,9 @@ envlist =
py34,
py35,
py36,
py37,
flake8,
coverage,

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

[testenv:flake8]
Expand Down

0 comments on commit d382078

Please sign in to comment.