Skip to content

Commit 50e51a7

Browse files
author
Ben Vinegar
committed
fix(deploy): Avoid using python2.x pip
1 parent 2ebbb01 commit 50e51a7

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.travis.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,9 @@ jobs:
1717
- PATH=$PATH:${HOME}/google-cloud-sdk/bin
1818
PYTHONPATH=${PYTHONPATH}:${GAE_PYTHONPATH} CLOUDSDK_CORE_DISABLE_PROMPTS=1
1919
before_install:
20-
- sudo apt-get install gcc python3-dev python3-setuptools
21-
- sudo pip uninstall crcmod
22-
- sudo pip install --no-cache-dir -U crcmod
23-
- sudo pip install httplib2
20+
- pip uninstall crcmod
21+
- pip install --no-cache-dir -U crcmod
22+
- pip install httplib2
2423
- if [ "$TRAVIS_BRANCH" != "master" -o "$TRAVIS_PULL_REQUEST" != "false" ]; then travis_terminate 0; fi
2524
- openssl aes-256-cbc -K $encrypted_3108ac7e9a1f_key -iv $encrypted_3108ac7e9a1f_iv
2625
-in .travis/credentials.tar.gz.enc -out credentials.tar.gz -d

0 commit comments

Comments
 (0)