Skip to content

Commit 52ba511

Browse files
authored
Merge pull request #57 from okin/feature/supporting_Python_3.8
Supporting Python 3.8
2 parents 1409195 + cbc2e92 commit 52ba511

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.travis.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ python:
66
- 3.5
77
- 3.6
88
- 3.7
9+
- 3.8
910
env:
1011
- TORNADO_VERSION=6.0 PYTEST_VERSION=5.2
1112
- TORNADO_VERSION=6.0 PYTEST_VERSION=4.3
@@ -16,7 +17,7 @@ env:
1617
- TORNADO_VERSION=4.3.0 PYTEST_VERSION=3.6
1718
- TORNADO_VERSION=4.1.0 PYTEST_VERSION=3.6.4
1819
install:
19-
- pip install -q tornado~=$TORNADO_VERSION pytest~=$PYTEST_VERSION
20+
- pip install tornado~=$TORNADO_VERSION pytest~=$PYTEST_VERSION
2021
- pip install PyOpenSSL # used to create a cert for testing
2122
- python setup.py install
2223
- pip install coverage coveralls
@@ -25,6 +26,9 @@ matrix:
2526
# Tornado 6 only supports Python >= 3.5
2627
- python: 2.7
2728
env: TORNADO_VERSION=6.0 PYTEST_VERSION=4.3
29+
# Pytest 4.0.0 requires a version of attrs that does not work with Python 3.8.
30+
- python: 3.8
31+
env: TORNADO_VERSION=5.0.0 PYTEST_VERSION=4.0.0
2832
# pytest 5 requires Python 3
2933
- python: 2.7
3034
env: TORNADO_VERSION=6.0 PYTEST_VERSION=5.2

0 commit comments

Comments
 (0)