Skip to content

Commit b4caa87

Browse files
committed
Fixing Travis config for Python 3 installation
1 parent 0325d7a commit b4caa87

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
@@ -21,9 +21,9 @@ addons:
2121
before_script:
2222
- |
2323
if [ $TRAVIS_OS_NAME = 'osx' ]; then
24-
brew install python3 &&
25-
virtualenv env -p python3 &&
24+
virtualenv env &&
2625
source env/bin/activate &&
26+
python --version &&
2727
pip install 'travis-cargo<0.2'
2828
else
2929
pip install 'travis-cargo<0.2' --user &&

0 commit comments

Comments
 (0)