Skip to content

Commit 9e6124e

Browse files
Merge remote-tracking branch 'origin/main' into tbergeron_udf_return_change
2 parents de1b2f7 + e9c52b1 commit 9e6124e

4,407 files changed

Lines changed: 479660 additions & 65867 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.

.gemini/config.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Configure the behavior of the gemini code assist bot.
2+
# More info:
3+
# https://developers.google.com/gemini-code-assist/docs/customize-gemini-behavior-github
4+
have_fun: false
5+
code_review:
6+
pull_request_opened:
7+
help: false
8+
code_review: true
9+
include_drafts: true
10+
ignore_patterns:
11+
- "packages/**/services/**/client.py"

.generator/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ RUN unzip protoc-25.3-linux-x86_64.zip -d protoc
6666

6767
# Download/extract pandoc
6868
# Pandoc is required by gapic-generator-python for parsing documentation
69+
# version-scanner: ignore-next-line
6970
ENV PANDOC_VERSION=3.8.2
7071
RUN mkdir pandoc-binary
7172
RUN wget https://github.com/jgm/pandoc/releases/download/${PANDOC_VERSION}/pandoc-${PANDOC_VERSION}-linux-amd64.tar.gz

.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 = "py39"
357+
target_version = "py310"
358358
common_args = [
359359
f"--target-version={target_version}",
360360
"--line-length=88",

.generator/test_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -741,7 +741,7 @@ def test_run_individual_session_success(mocker, caplog, is_mono_repo):
741741
"cli.subprocess.run", return_value=MagicMock(returncode=0)
742742
)
743743

744-
test_session = "unit-3.9"
744+
test_session = "unit-3.10"
745745
test_library_id = "test-library"
746746
repo = "repo"
747747
_run_individual_session(test_session, test_library_id, repo, is_mono_repo)

.github/CODEOWNERS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
# - @googleapis/gcs-team
2222
# - @googleapis/pubsub-team
2323
# - @googleapis/spanner-team
24+
# - @googleapis/cloud-sdk-librarian-team
2425

2526
# As per the above, the following list is only used for notifications, not for approvals.
2627
# Googlers see b/477912165 and corresponding design doc
@@ -44,3 +45,4 @@
4445
/packages/pandas-gbq/ @googleapis/bigquery-team @googleapis/bigquery-dataframe-team
4546
/packages/sqlalchemy-bigquery/ @googleapis/bigquery-team @googleapis/bigquery-dataframe-team
4647
/packages/sqlalchemy-spanner/ @googleapis/spanner-team
48+
/librarian.yaml @googleapis/cloud-sdk-librarian-team
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
name: Deploy BigFrames docs to GitHub Pages
2+
3+
on:
4+
# Runs on pushes targeting the default branch
5+
push:
6+
branches: ["main"]
7+
paths:
8+
- "packages/bigframes/docs/**"
9+
- ".github/workflows/bigframes-docs-deploy.yaml"
10+
11+
# Allows you to run this workflow manually from the Actions tab
12+
workflow_dispatch:
13+
14+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
15+
permissions:
16+
contents: read
17+
pages: write
18+
id-token: write
19+
20+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
21+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
22+
concurrency:
23+
group: "pages"
24+
cancel-in-progress: false
25+
26+
jobs:
27+
# Build job
28+
build:
29+
runs-on: ubuntu-latest
30+
steps:
31+
- name: Checkout
32+
uses: actions/checkout@v6
33+
# Use a fetch-depth of 2 to avoid error `fatal: origin/main...HEAD: no merge base`
34+
# See https://github.com/googleapis/google-cloud-python/issues/12013
35+
# and https://github.com/actions/checkout#checkout-head.
36+
with:
37+
fetch-depth: 2
38+
- name: Setup Python
39+
uses: actions/setup-python@v6
40+
with:
41+
python-version: "3.10"
42+
- name: Install nox
43+
run: |
44+
python -m pip install --upgrade setuptools pip wheel
45+
python -m pip install nox
46+
- name: Run docs
47+
working-directory: ./packages/bigframes
48+
run: |
49+
nox -s docs
50+
- name: Upload artifact
51+
uses: actions/upload-pages-artifact@v5
52+
with:
53+
path: packages/bigframes/docs/_build/html/
54+
55+
# Deployment job
56+
deploy:
57+
environment:
58+
name: github-pages
59+
url: ${{ steps.deployment.outputs.page_url }}
60+
runs-on: ubuntu-latest
61+
needs: build
62+
steps:
63+
- name: Deploy to GitHub Pages
64+
id: deployment
65+
uses: actions/deploy-pages@v5

.github/workflows/bigtable-conformance.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ jobs:
2121
outputs:
2222
run_bigtable: ${{ steps.filter.outputs.bigtable }}
2323
steps:
24-
- uses: actions/checkout@v4
25-
- uses: dorny/paths-filter@v3
24+
- uses: actions/checkout@v6
25+
- uses: dorny/paths-filter@v4
2626
id: filter
2727
with:
2828
filters: |
@@ -48,18 +48,18 @@ jobs:
4848
fail-fast: false
4949
name: "${{ matrix.client-type }} client / python ${{ matrix.py-version }} / test tag ${{ matrix.test-version }}"
5050
steps:
51-
- uses: actions/checkout@v4
51+
- uses: actions/checkout@v6
5252
name: "Checkout google-cloud-python"
53-
- uses: actions/checkout@v4
53+
- uses: actions/checkout@v6
5454
name: "Checkout conformance tests"
5555
with:
5656
repository: googleapis/cloud-bigtable-clients-test
5757
ref: ${{ matrix.test-version }}
5858
path: packages/google-cloud-bigtable/cloud-bigtable-clients-test
59-
- uses: actions/setup-python@v5
59+
- uses: actions/setup-python@v6
6060
with:
6161
python-version: ${{ matrix.py-version }}
62-
- uses: actions/setup-go@v5
62+
- uses: actions/setup-go@v6
6363
with:
6464
go-version: '>=1.20.2'
6565
- run: pip install -e .

.github/workflows/django-spanner-django3.2_tests_against_emulator0.yml

Lines changed: 0 additions & 59 deletions
This file was deleted.

.github/workflows/django-spanner-django3.2_tests_against_emulator1.yml

Lines changed: 0 additions & 59 deletions
This file was deleted.

.github/workflows/django-spanner-django3.2_tests_against_emulator2.yml

Lines changed: 0 additions & 59 deletions
This file was deleted.

0 commit comments

Comments
 (0)