Skip to content

Commit 257c47f

Browse files
committed
Fix CI failures by bumping rust to 1.18 and using pip2
Some of the dependencies require 1.18 now. The newer OSX images in Travis require using pip2 (or pip3) instead of just pip. With these fixes the CI tests now pass.
1 parent f7765c8 commit 257c47f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: rust
22
sudo: false
33
rust:
4-
- 1.15.0
4+
- 1.18.0
55
- stable
66
- beta
77
- nightly
@@ -19,7 +19,7 @@ addons:
1919
- binutils-dev
2020

2121
before_script:
22-
- pip install 'travis-cargo<0.2' --user
22+
- pip2 install 'travis-cargo<0.2' --user
2323

2424
env:
2525
global:

0 commit comments

Comments
 (0)