Skip to content

Commit

Permalink
Ensure virtualenv is installed
Browse files Browse the repository at this point in the history
  • Loading branch information
gnossen committed Jan 22, 2024
1 parent 5bf0971 commit e861376
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions requirements.bazel.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ proto-plus==1.22.3
google-auth==2.23.4
googleapis-common-protos==1.61.0
cachetools==5.3.2
charset-normalizer==3.3.2
charset-normalizer==3.3.2
pyasn1==0.5.0
rsa==4.9
rsa==4.9
greenlet==1.1.3.post0
zope.interface==6.1
opentelemetry-sdk==1.21.0
Expand Down
2 changes: 1 addition & 1 deletion tools/buildgen/generate_projects.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ tools/buildgen/build_cleaner.py build_handwritten.yaml

# /usr/local/google/home/rbellevi/dev/tmp/grpc/venv/bin/python3: No module named virtualenv
# Generate xds-protos
[[ -d generate_projects_virtual_environment ]] || python3 -m virtualenv generate_projects_virtual_environment
[[ -d generate_projects_virtual_environment ]] || { python3 -m pip install virtualenv --upgrade && python3 -m virtualenv generate_projects_virtual_environment; }
generate_projects_virtual_environment/bin/pip install --upgrade --ignore-installed grpcio-tools==1.59.0
generate_projects_virtual_environment/bin/python tools/distrib/python/xds_protos/build.py

Expand Down

0 comments on commit e861376

Please sign in to comment.