Skip to content

Commit 3df72de

Browse files
committed
Run tests against Python 3.7 and update classifiers
1 parent 4e6fde3 commit 3df72de

3 files changed

Lines changed: 20 additions & 4 deletions

File tree

.travis.yml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ jobs:
77
install: npm install phantomjs-prebuilt@2.1.15 grunt-cli grunt grunt-contrib-qunit
88
script: grunt test
99
- stage:
10-
python: 3.6
10+
python: 3.7
11+
dist: xenial
12+
sudo: required
1113
env: TOXENV=flake8
1214
- stage:
1315
python: 2.7
@@ -21,6 +23,16 @@ jobs:
2123
- stage:
2224
python: 3.6
2325
env: TOXENV=py36-ansi2html
26+
- stage:
27+
python: 3.7
28+
dist: xenial
29+
sudo: required
30+
env: TOXENV=py37
31+
- stage:
32+
python: 3.7
33+
dist: xenial
34+
sudo: required
35+
env: TOXENV=py37-ansi2html
2436
- stage:
2537
python: pypy
2638
env: TOXENV=pypy
@@ -34,7 +46,9 @@ jobs:
3446
python: pypy3
3547
env: TOXENV=pypy3-ansi2html
3648
- stage: deploy
37-
python: 3.6
49+
python: 3.7
50+
dist: xenial
51+
sudo: required
3852
install: skip
3953
script: skip
4054
deploy:

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,6 @@
2929
'Topic :: Utilities',
3030
'Programming Language :: Python',
3131
'Programming Language :: Python :: 2.7',
32-
'Programming Language :: Python :: 3.6'])
32+
'Programming Language :: Python :: 3.6',
33+
'Programming Language :: Python :: 3.7',
34+
])

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py{27,36,py,py3}{,-ansi2html}, flake8
7+
envlist = py{27,36,37,py,py3}{,-ansi2html}, flake8
88

99
[testenv]
1010
commands = pytest -v -r a {posargs}

0 commit comments

Comments
 (0)