Skip to content

Commit 0910004

Browse files
Update .travis.yml
1 parent 9663fa6 commit 0910004

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

.travis.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,21 @@ sudo: false
77
language: python
88

99
# Set the python version to 3.7
10-
python: 3.7
10+
python:
11+
- "2.7"
12+
- "3.4"
13+
- "3.5"
14+
- "3.6" # current default Python on Travis CI
15+
- "3.7"
16+
- "3.7-dev" # 3.7 development branch
17+
- "3.8-dev" # 3.8 development branch
18+
- "nightly" # nightly build
19+
# command to install dependencies
1120

1221
# Install the codecov pip dependency
1322
install:
14-
- pip install -r ./requirements.txt
1523
- pip install codecov
16-
- python setup.py install
24+
- make install
1725

1826
# Run the unit test
1927
script:

0 commit comments

Comments
 (0)