We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f735368 commit 576b449Copy full SHA for 576b449
1 file changed
.travis.yml
@@ -1,7 +1,25 @@
1
+# Use travis container-based build system for speed
2
sudo: false
3
4
+# Ubuntu trusty (14.04) - latest that Travis offers
5
+dist: trusty
6
+
7
+# Make sure all the python versions we need are pre-installed
8
+# (apt-get is not available in the container-based build system)
9
+addons:
10
+ apt:
11
+ sources:
12
+ - deadsnakes
13
+ packages:
14
+ - python2.7
15
+ - python3.4
16
+ - python3.5
17
+ - python3.6
18
19
language: python
20
21
+# The version of Python that'll be used to invoke tox. Has no effect
22
+# on what version of Python tox uses to run each set of tests.
23
python:
24
- "3.5"
25
0 commit comments