Skip to content

Commit 71f694c

Browse files
authored
Merge branch 'main' into migration.python-bigquery-sqlalchemy.migration.2026-03-06_19-24-38.migrate
2 parents 62cf6c9 + 3722638 commit 71f694c

801 files changed

Lines changed: 280574 additions & 3807 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.generator/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ def _run_post_processor(output: str, library_id: str, is_mono_repo: bool):
354354
# TODO(https://github.com/googleapis/google-cloud-python/issues/15538):
355355
# Investigate if a `target_version needs to be maintained
356356
# or can be eliminated.
357-
target_version = "py37"
357+
target_version = "py39"
358358
common_args = [
359359
f"--target-version={target_version}",
360360
"--line-length=88",

.generator/requirements.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
click
2-
gapic-generator==1.30.9 # update repo location for core deps https://github.com/googleapis/gapic-generator-python/pull/2566
2+
gapic-generator==1.30.13 # https://github.com/googleapis/gapic-generator-python/releases/tag/v1.30.13
33
nox
44
starlark-pyo3>=2025.1
55
build

.github/CODEOWNERS

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,3 @@
33

44
# Default owner for all directories not owned by others
55
* @googleapis/cloud-sdk-python-team @googleapis/cloud-sdk-librarian-team
6-
7-
/packages/google-cloud-bigquery-storage/ @googleapis/bigquery-team @googleapis/cloud-sdk-librarian-team

.kokoro/system.sh

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,10 @@ packages_with_system_tests=(
9696
"google-cloud-error-reporting"
9797
"google-cloud-firestore"
9898
"google-cloud-logging"
99+
"google-cloud-pubsub"
99100
"google-cloud-testutils"
100101
"sqlalchemy-bigquery"
102+
"pandas-gbq"
101103
)
102104

103105
# A file for running system tests
@@ -107,12 +109,16 @@ system_test_script="${PROJECT_ROOT}/.kokoro/system-single.sh"
107109
packages_with_system_tests_pattern=$(printf "|*%s*" "${packages_with_system_tests[@]}")
108110
packages_with_system_tests_pattern="${packages_with_system_tests_pattern:1}" # Remove the leading pipe
109111

110-
# Run system tests for each package with directory `packages/*/tests/system` or directory `packages/*/system_tests`
111-
for dir in `find 'packages' -type d -wholename 'packages/*/tests/system' -o -wholename 'packages/*/system_tests'`; do
112+
# Run system tests for each package with directory packages/*/tests/system
113+
for path in `find 'packages' \
114+
\( -type d -wholename 'packages/*/tests/system' \) -o \
115+
\( -type d -wholename 'packages/*/system_tests' \) -o \
116+
\( -type f -wholename 'packages/*/tests/system.py' \)`; do
117+
112118
# Extract the package name and define the relative package path
113-
# 1. Remove the 'packages/' prefix from the start
114-
# 2. Remove everything after the first '/' remaining
115-
package_name=${dir#packages/}
119+
# 1. Remove the 'packages/' prefix
120+
# 2. Remove everything after the first '/'
121+
package_name=${path#packages/}
116122
package_name=${package_name%%/*}
117123
package_path="packages/${package_name}"
118124

0 commit comments

Comments
 (0)