Skip to content

Commit

Permalink
Fix python 3 version used by travis (#1016)
Browse files Browse the repository at this point in the history
Travis now uses
[xenial](https://blog.travis-ci.com/2019-04-15-xenial-default-build-environment)
as the default build environment. The CI uses system site packages, but
this option only works with the default python 3 version. In xenial this
version is [python 3.5](https://packages.ubuntu.com/xenial/python3).

Signed-off-by: Shane Loretz<[email protected]>
  • Loading branch information
sloretz authored Jul 8, 2019
1 parent 50760eb commit 1d1059c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
language: python
python:
- "2.7_with_system_site_packages"
- "3.4_with_system_site_packages"
- "2.7"
- "3.5"
virtualenv:
system_site_packages: true
# command to install dependencies
install:
- pip install argparse catkin-pkg empy mock nose
Expand Down

0 comments on commit 1d1059c

Please sign in to comment.