Skip to content

Commit cd38940

Browse files
committed
Merge remote-tracking branch 'origin/main' into b329865893-groupby-iter
2 parents 91e9ade + 78f4001 commit cd38940

File tree

789 files changed

+81612
-21608
lines changed

Some content is hidden

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

789 files changed

+81612
-21608
lines changed

.github/.OwlBot.lock.yaml

Lines changed: 2 additions & 2 deletions
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:04c35dc5f49f0f503a306397d6d043685f8d2bb822ab515818c4208d7fb2db3a
17-
# created: 2025-01-16T15:24:11.364245182Z
16+
digest: sha256:a7aef70df5f13313ddc027409fc8f3151422ec2a57ac8730fce8fa75c060d5bb
17+
# created: 2025-04-10T17:00:10.042601326Z

.github/release-please.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,10 @@
11
releaseType: python
22
handleGHRelease: true
3+
extraFiles:
4+
- bigframes/version.py
5+
- third_party/bigframes_vendored/version.py
6+
7+
branches:
8+
- branch: v1
9+
handleGHRelease: true
10+
releaseType: python

.github/sync-repo-settings.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,24 @@ branchProtectionRules:
1212
- 'cla/google'
1313
- 'docs'
1414
- 'lint'
15+
- 'mypy'
16+
- 'unit (3.9)'
17+
- 'unit (3.10)'
18+
- 'unit (3.11)'
19+
- 'unit (3.12)'
20+
- 'cover'
21+
- 'Kokoro presubmit'
22+
- 'Kokoro windows'
23+
- pattern: v1
24+
requiresCodeOwnerReviews: true
25+
requiresStrictStatusChecks: false
26+
requiredStatusCheckContexts:
27+
- 'OwlBot Post Processor'
28+
- 'conventionalcommits.org'
29+
- 'cla/google'
30+
- 'docs'
31+
- 'lint'
32+
- 'mypy'
1533
- 'unit (3.9)'
1634
- 'unit (3.10)'
1735
- 'unit (3.11)'

.github/workflows/mypy.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
on:
2+
pull_request:
3+
branches:
4+
- main
5+
name: mypy
6+
jobs:
7+
mypy:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v4
12+
- name: Setup Python
13+
uses: actions/setup-python@v5
14+
with:
15+
python-version: "3.10"
16+
- name: Install nox
17+
run: |
18+
python -m pip install --upgrade setuptools pip wheel
19+
python -m pip install nox
20+
- name: Run mypy
21+
run: |
22+
nox -s mypy

.kokoro/build.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,6 @@ if [[ -n "${NOX_SESSION:-}" ]]; then
5050
else
5151
python3 -m nox --stop-on-first-error
5252
fi
53+
54+
# Prevent kokoro from trying to collect many mb of artifacts, wasting several minutes
55+
sudo rm -rf "${KOKORO_ARTIFACTS_DIR?}"/*

.kokoro/continuous/doctest.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Only run this nox session.
44
env_vars: {
55
key: "NOX_SESSION"
6-
value: "doctest cleanup"
6+
value: "cleanup doctest"
77
}
88

99
env_vars: {

.kokoro/docker/docs/Dockerfile

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

.kokoro/docker/docs/fetch_gpg_keys.sh

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

.kokoro/docker/docs/requirements.in

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

0 commit comments

Comments
 (0)