From 06223a9d95b150f696446ff8642a50e081556754 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 18 Aug 2021 04:09:56 +0000 Subject: [PATCH 1/2] chore(deps): update dependency google-cloud-bigquery to v2.24.0 --- samples/snippets/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/snippets/requirements.txt b/samples/snippets/requirements.txt index 621dd3ba..9f4ec30d 100644 --- a/samples/snippets/requirements.txt +++ b/samples/snippets/requirements.txt @@ -16,7 +16,7 @@ GeoAlchemy2==0.9.3 geopandas==0.9.0 google-api-core==1.31.1 google-auth==1.34.0 -google-cloud-bigquery==2.23.2 +google-cloud-bigquery==2.24.0 google-cloud-bigquery-storage==2.6.2 google-cloud-core==1.7.2 google-crc32c==1.1.2 From 0341052e8ded82096474e424a1668054a2c6a9e1 Mon Sep 17 00:00:00 2001 From: Owl Bot Date: Wed, 18 Aug 2021 04:11:18 +0000 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=A6=89=20Updates=20from=20OwlBot?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --- samples/snippets/noxfile.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/samples/snippets/noxfile.py b/samples/snippets/noxfile.py index 9fc7f178..b008613f 100644 --- a/samples/snippets/noxfile.py +++ b/samples/snippets/noxfile.py @@ -39,7 +39,7 @@ TEST_CONFIG = { # You can opt out from the test for specific Python versions. - "ignored_versions": ["2.7"], + "ignored_versions": [], # Old samples are opted out of enforcing Python type hints # All new samples should feature them "enforce_type_hints": False, @@ -86,15 +86,18 @@ def get_pytest_env_vars() -> Dict[str, str]: # DO NOT EDIT - automatically generated. -# All versions used to tested samples. -ALL_VERSIONS = ["2.7", "3.6", "3.7", "3.8", "3.9"] +# All versions used to test samples. +ALL_VERSIONS = ["3.6", "3.7", "3.8", "3.9"] # Any default versions that should be ignored. IGNORED_VERSIONS = TEST_CONFIG["ignored_versions"] TESTED_VERSIONS = sorted([v for v in ALL_VERSIONS if v not in IGNORED_VERSIONS]) -INSTALL_LIBRARY_FROM_SOURCE = bool(os.environ.get("INSTALL_LIBRARY_FROM_SOURCE", False)) +INSTALL_LIBRARY_FROM_SOURCE = os.environ.get("INSTALL_LIBRARY_FROM_SOURCE", False) in ( + "True", + "true", +) # # Style Checks #