Skip to content
This repository was archived by the owner on Jan 6, 2024. It is now read-only.

Commit 41fd1d3

Browse files
chore: Update test-samples-impl.sh python3.6 --> python3.9 (#418)
Source-Link: googleapis/synthtool@1f07110 Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-python:latest@sha256:a5d81b61dfd1a432d3c03f51a25d2e71b37be24da509966d50724aea7c57c5c2 Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: nicain <[email protected]>
1 parent 04ded3c commit 41fd1d3

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.github/.OwlBot.lock.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
# limitations under the License.
1414
docker:
1515
image: gcr.io/cloud-devrel-public-resources/owlbot-python:latest
16-
digest: sha256:b2dc5f80edcf5d4486c39068c9fa11f7f851d9568eea4dcba130f994ea9b5e97
17-
# created: 2022-06-12T16:09:31.61859086Z
16+
digest: sha256:a5d81b61dfd1a432d3c03f51a25d2e71b37be24da509966d50724aea7c57c5c2
17+
# created: 2022-07-04T12:33:08.125873124Z

.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.10 -m pip install --upgrade --quiet nox
36+
python3.9 -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.10 -m nox -s "$RUN_TESTS_SESSION"
79+
python3.9 -m nox -s "$RUN_TESTS_SESSION"
8080
EXIT=$?
8181

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

noxfile.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -376,8 +376,7 @@ def prerelease_deps(session):
376376
deps = [dep for dep in deps if dep not in prerel_deps]
377377
# We use --no-deps to ensure that pre-release versions aren't overwritten
378378
# by the version ranges in setup.py.
379-
if deps:
380-
session.install(*deps)
379+
session.install(*deps)
381380
session.install("--no-deps", "-e", ".[all]")
382381

383382
# Print out prerelease package versions

0 commit comments

Comments
 (0)