Skip to content

Commit 1ec4c00

Browse files
authored
Merge pull request #3 from mgedmin/update-support
check-python-versions --add 3.8 --drop 3.4 to update packages automatically.
2 parents 6443d14 + 6d4fd3d commit 1ec4c00

35 files changed

+4884
-1241
lines changed

.coveragerc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ branch = True
66
[report]
77
exclude_lines =
88
pragma: nocover
9+
pragma: windows
910
if __name__ == .__main__.:

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ tmp/
55
.tox/
66
.coverage
77
__pycache__/
8+
tags

.travis.yml

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,21 @@
11
language: python
22
dist: xenial
33
python:
4-
- 3.6
5-
- 3.7
4+
- 3.6
5+
- 3.7
6+
matrix:
7+
include:
8+
- name: flake8
9+
install: pip install flake8
10+
script: flake8 src *.py
11+
after_script:
612
install:
7-
- pip install pytest coverage coveralls flake8
8-
- pip install -e .
13+
- pip install pytest coverage coveralls
14+
- pip install -e .
915
script:
10-
- coverage run -m pytest tests.py
11-
- coverage report -m --fail-under=100
12-
- flake8 *.py
16+
- coverage run -m pytest tests
17+
- coverage report -m
1318
after_script:
14-
- coveralls
19+
- coveralls
1520
notifications:
16-
email: false
21+
email: false

CHANGES.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ Changelog
66

77
- Ignore unreleased Python versions (3.8 at the moment).
88

9+
- Allow half-open ranges like ``--expect 3.5-``.
10+
911

1012
0.11.0 (2019-02-13)
1113
-------------------

0 commit comments

Comments
 (0)