Skip to content

Commit 8fc2c5c

Browse files
committed
Promote python 3.8 in .travis.yml
Python 3.8.0 is released. Use 3.8 instead of 3.7 as primary python platform. Also drop `nightly' and `3.8-dev' from the matrix. And reorder matrix so that most-recent python 3.x versions run first. Signed-off-by: Peter Grayson <[email protected]>
1 parent 11db302 commit 8fc2c5c

File tree

2 files changed

+9
-13
lines changed

2 files changed

+9
-13
lines changed

.travis.yml

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,39 +12,34 @@ matrix:
1212
include:
1313
- python: '2.7'
1414
env: MAKE_TARGET=lint
15-
- python: '3.7'
15+
- python: '3.8'
1616
env: MAKE_TARGET=lint
1717
dist: xenial
1818
- python: '2.7'
1919
env: MAKE_TARGET=coverage-test
20-
- python: '3.7'
20+
- python: '3.8'
2121
env: MAKE_TARGET=coverage-test
2222
dist: xenial
2323
- python: 'pypy3'
2424
env: MAKE_TARGET=test
2525
- python: 'pypy'
2626
env: MAKE_TARGET=test
27-
- python: '3.3'
28-
dist: trusty
27+
- python: '3.7'
2928
env: MAKE_TARGET=test
30-
- python: '3.4'
29+
dist: xenial
30+
- python: '3.6'
3131
env: MAKE_TARGET=test
3232
- python: '3.5'
3333
env: MAKE_TARGET=test
34-
- python: '3.6'
35-
env: MAKE_TARGET=test
36-
- python: '3.8-dev'
34+
- python: '3.4'
3735
env: MAKE_TARGET=test
38-
dist: xenial
39-
- python: 'nightly'
40-
dist: xenial
36+
- python: '3.3'
37+
dist: trusty
4138
env: MAKE_TARGET=test
4239
- python: '2.6'
4340
dist: trusty
4441
env: MAKE_TARGET=test
4542
allow_failures:
46-
- python: '3.8-dev'
47-
- python: 'nightly'
4843
- python: '2.6'
4944

5045
install:

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,7 @@ def __check_git_version():
162162
'Programming Language :: Python :: 3.5',
163163
'Programming Language :: Python :: 3.6',
164164
'Programming Language :: Python :: 3.7',
165+
'Programming Language :: Python :: 3.8',
165166
'Programming Language :: Python :: Implementation :: CPython',
166167
'Programming Language :: Python :: Implementation :: PyPy',
167168
'Topic :: Software Development :: Version Control',

0 commit comments

Comments
 (0)