Skip to content

Commit 2ebbb01

Browse files
author
Ben Vinegar
committed
fix(deploy): Use pip vs pip3
1 parent f8eb3ed commit 2ebbb01

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.travis.yml

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

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,11 @@ This repository is already configured to automatically deploy to https://sourcem
5757

5858
NOTE: Your deployed cloud function must be configured to use [Cloud Functions Node 10 runtime](https://cloud.google.com/functions/docs/concepts/nodejs-10-runtime) (or newer).
5959

60+
61+
### Install the gcloud CLI
62+
63+
Follow Google Cloud's instructions for [installing the gcloud CLI](https://cloud.google.com/sdk/docs/install).
64+
6065
### Deploying
6166

6267
First authenticate with Google Cloud Platform:

0 commit comments

Comments
 (0)