Skip to content

Commit 4322fe2

Browse files
author
Sam Goodman
committed
fix: Prevent owlbot from re-adding 3.6 dependencies
1 parent e138cfd commit 4322fe2

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.kokoro/test-samples-impl.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export PYTHONUNBUFFERED=1
3333
env | grep KOKORO
3434

3535
# Install nox
36-
python3.6 -m pip install --upgrade --quiet nox
36+
python3.7 -m pip install --upgrade --quiet nox
3737

3838
# Use secrets acessor service account to get secrets
3939
if [[ -f "${KOKORO_GFILE_DIR}/secrets_viewer_service_account.json" ]]; then
@@ -76,7 +76,7 @@ for file in samples/**/requirements.txt; do
7676
echo "------------------------------------------------------------"
7777

7878
# Use nox to execute the tests for the project.
79-
python3.6 -m nox -s "$RUN_TESTS_SESSION"
79+
python3.7 -m nox -s "$RUN_TESTS_SESSION"
8080
EXIT=$?
8181

8282
# If this is a periodic build, send the test log to the FlakyBot.

owlbot.py

-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@
100100
".kokoro/presubmit/presubmit.cfg",
101101
# exclude sample configs so periodic samples are tested against main
102102
# instead of pypi
103-
".kokoro/samples/python3.6/periodic.cfg",
104103
".kokoro/samples/python3.7/periodic.cfg",
105104
".kokoro/samples/python3.8/periodic.cfg",
106105
".kokoro/samples/python3.9/periodic.cfg",

0 commit comments

Comments
 (0)