File tree Expand file tree Collapse file tree 2 files changed +27
-12
lines changed
Expand file tree Collapse file tree 2 files changed +27
-12
lines changed Original file line number Diff line number Diff line change 11# After changing this file, check it on: https://lint.travis-ci.org/
22language : python
3- sudo : false
3+ sudo : required
44
55# Python targets, as defined by https://github.com/travis-ci/travis-build/blob
66# /master/spec/build/script/python_spec.rb and https://github.com/travis-ci
77# /travis-build/blob/master/lib/travis/build/script/python.rb
8- python :
9- # Standard release https://docs.travis-ci.com/user/languages
10- # /python#choosing-python-versions-to-test-against
11- - " 2.7"
12- - " 3.4"
13- - " 3.5"
14- - " 3.6"
15- - " 3.7-dev" # a.k.a "nightly"
8+ # Standard release https://docs.travis-ci.com/user/languages
9+ # /python#choosing-python-versions-to-test-against
10+ matrix :
1611
17- # PyPy2.7: https://doc.pypy.org/en/latest
18- # /index-of-release-notes.html#cpython-2-7-compatible-versions
19- - pypy-5.4
12+ # Explicitely set all python version to a distribution as some are not
13+ # supported by default distribution.
14+ include :
15+ - python : " 2.7"
16+ dist : trusty
17+ - python : " 3.4"
18+ dist : trusty
19+ - python : " 3.5"
20+ dist : trusty
21+ - python : " 3.6"
22+ dist : trusty
23+ # We need to switch to Xenial starting with Python 3.7. See:
24+ # https://github.com/travis-ci/travis-ci/issues/9069#issuecomment-425720905
25+ - python : " 3.7"
26+ dist : xenial
27+ - python : " 3.8-dev"
28+ dist : xenial
29+ # PyPy2.7: https://doc.pypy.org/en/latest
30+ # /index-of-release-notes.html#cpython-2-7-compatible-versions
31+ - python : " pypy-5.4"
32+ dist : trusty
2033
2134before_install :
2235 # Check default Python version installed.
Original file line number Diff line number Diff line change @@ -150,6 +150,8 @@ def long_description():
150150 'Programming Language :: Python :: 3' ,
151151 'Programming Language :: Python :: 3.4' ,
152152 'Programming Language :: Python :: 3.5' ,
153+ 'Programming Language :: Python :: 3.6' ,
154+ 'Programming Language :: Python :: 3.7' ,
153155 'Programming Language :: Python :: Implementation :: CPython' ,
154156 'Programming Language :: Python :: Implementation :: PyPy' ,
155157 'Topic :: Software Development :: Libraries :: Python Modules' ,
You can’t perform that action at this time.
0 commit comments