summaryrefslogtreecommitdiffhomepage
path: root/kokoro/kythe
diff options
context:
space:
mode:
authorBrad Burlage <brb@google.com>2019-12-10 14:54:04 -0800
committergVisor bot <gvisor-bot@google.com>2019-12-10 14:55:35 -0800
commita0aa784ecfb0d5ef94decf3c2be3e1cd44b6cbc6 (patch)
tree04d12984ab21066db39340acb67d8e865dcd08a9 /kokoro/kythe
parent87337e92e3a65e69f6bfc6ac7d162c1b6ed18048 (diff)
Remove pyenv calls but log the python 3 version in use.
Apparently our Kokoro VM images don't have pyenv -- I previously tested this on the Kokoro QA shared pool. PiperOrigin-RevId: 284855160
Diffstat (limited to 'kokoro/kythe')
-rw-r--r--kokoro/kythe/generate_xrefs.sh6
1 files changed, 1 insertions, 5 deletions
diff --git a/kokoro/kythe/generate_xrefs.sh b/kokoro/kythe/generate_xrefs.sh
index 471b90e92..49186eeeb 100644
--- a/kokoro/kythe/generate_xrefs.sh
+++ b/kokoro/kythe/generate_xrefs.sh
@@ -23,11 +23,7 @@ if command -v use_bazel.sh >/dev/null; then
fi
bazel version
-# We need to use python 3.6 (the Kokoro PY3 default is 3.4) to compile `//...`
-# because benchmarktools requires a version of `requests` that is not a
-# available in 3.4.
-pyenv versions
-pyenv global 3.6.1
+python3 -V
readonly KYTHE_VERSION='v0.0.37'
readonly WORKDIR="$(mktemp -d)"