Skip to content

Commit 61fddb0

Browse files
authored
ci: Add Python 3.8 support (#254)
1 parent ec767b7 commit 61fddb0

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.gitignore

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
*.pyc
22
MANIFEST
33
.idea/*
4-
.virtualenv/*
5-
.py3virtualenv/*
4+
.*virtualenv/*
65

76
# Output of building package
87
*.egg-info

.travis.yml

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ python:
55
- "3.5.5"
66
- "3.6"
77
# - "3.7" is handled in 'Test' job using xenial as Python 3.7 is not available for trusty.
8+
# - "3.8" is handled in 'Test' job using xenial as Python 3.8 is not available for trusty.
89
- "pypy"
910
- "pypy3"
1011
install: "pip install -r requirements/core.txt;pip install -r requirements/test.txt"
@@ -71,3 +72,8 @@ jobs:
7172
srcclr: true
7273
dist: xenial
7374
python: "3.7"
75+
- stage: 'Test'
76+
addons:
77+
srcclr: true
78+
dist: xenial
79+
python: "3.8"

requirements/test.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
coverage==4.0.3
1+
coverage>=4.0.3
22
flake8==3.6.0
33
funcsigs==0.4
44
mock==1.3.0

0 commit comments

Comments
 (0)