Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upper bounds and unpinned Python versions for build pipeline #5626

Merged
merged 3 commits into from
Jan 19, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .buildkite/setup_and_upload_artifacts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ PYTHON="$SCRIPTPATH/env/bin/python"
echo "Creating virtualenv..."
virtualenv -p python3 env

$PIP freeze
$PIP install setuptools\<44
echo "Installing requirements..."
$PIP install -r requirements_pipeline.txt

Expand Down
15 changes: 12 additions & 3 deletions requirements_pipeline.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
requests==2.10.0
github3.py==0.9.6
gcloud
# Use the requests that we get from github3 >=2.18
# requests<2.3
github3.py>=0.9.6,<1.4
gcloud<0.20

googleapis-common-protos<1.52

# 44 stops supporting Py 3.4
setuptools<44

# https://github.com/googleapis/google-api-python-client/issues/803
httplib2<0.16