-
Notifications
You must be signed in to change notification settings - Fork 612
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into blog/ibis-udf-rewriting
- Loading branch information
Showing
126 changed files
with
2,722 additions
and
1,748 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Generate a GitHub token | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].3 | ||
id: generate_token | ||
with: | ||
app-id: ${{ secrets.SQUAWK_BOT_APP_ID }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ jobs: | |
cancel-in-progress: true | ||
if: github.event.label.name == 'docs-preview' | ||
steps: | ||
- uses: actions/[email protected].2 | ||
- uses: actions/[email protected].3 | ||
id: generate_token | ||
with: | ||
app-id: ${{ secrets.DOCS_BOT_APP_ID }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,18 +22,20 @@ env: | |
|
||
jobs: | ||
test_backends: | ||
name: ${{ matrix.backend.title }} python-${{ matrix.python-version }} | ||
name: ${{ matrix.backend.title }} python-${{ matrix.python-version }}-${{ matrix.os }} | ||
# only a single bigquery or snowflake run at a time, otherwise test data is | ||
# clobbered by concurrent runs | ||
concurrency: | ||
group: ${{ matrix.backend.title }}-${{ matrix.python-version }}-${{ github.event.label.name || 'ci-run-cloud' }} | ||
cancel-in-progress: false | ||
|
||
runs-on: ubuntu-latest | ||
runs-on: ${{ matrix.os }} | ||
if: github.event_name == 'push' || github.event.label.name == 'ci-run-cloud' | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: | ||
- ubuntu-latest | ||
python-version: | ||
- "3.10" | ||
- "3.13" | ||
|
@@ -51,33 +53,44 @@ jobs: | |
extras: | ||
- --extra athena | ||
include: | ||
- python-version: "3.10" | ||
- os: ubuntu-latest | ||
python-version: "3.10" | ||
backend: | ||
name: bigquery | ||
title: BigQuery | ||
extras: | ||
- --extra bigquery | ||
- python-version: "3.13" | ||
- os: ubuntu-latest | ||
python-version: "3.13" | ||
backend: | ||
name: bigquery | ||
title: BigQuery | ||
extras: | ||
- --extra bigquery | ||
- --extra geospatial | ||
- python-version: "3.10" | ||
- os: ubuntu-latest | ||
python-version: "3.10" | ||
backend: | ||
name: snowflake | ||
title: Snowflake + Snowpark | ||
key: snowpark | ||
extras: | ||
- --extra snowflake | ||
- python-version: "3.11" | ||
- os: ubuntu-latest | ||
python-version: "3.11" | ||
backend: | ||
name: snowflake | ||
title: Snowflake + Snowpark | ||
key: snowpark | ||
extras: | ||
- --extra snowflake | ||
- os: windows-latest | ||
python-version: "3.12" | ||
backend: | ||
name: snowflake | ||
title: Snowflake | ||
extras: | ||
- --extra snowflake | ||
# this allows extractions/setup-just to list releases for `just` at a higher | ||
# rate limit while restricting GITHUB_TOKEN permissions elsewhere | ||
permissions: | ||
|
@@ -97,7 +110,7 @@ jobs: | |
fetch-depth: 0 | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
|
||
- uses: actions/[email protected].2 | ||
- uses: actions/[email protected].3 | ||
id: generate_token | ||
with: | ||
app-id: ${{ secrets.DOCS_BOT_APP_ID }} | ||
|
@@ -138,6 +151,7 @@ jobs: | |
|
||
- name: setup databricks credentials | ||
if: matrix.backend.name == 'databricks' | ||
shell: bash | ||
run: | | ||
{ | ||
echo "DATABRICKS_HTTP_PATH=${DATABRICKS_HTTP_PATH}" | ||
|
@@ -151,6 +165,7 @@ jobs: | |
|
||
- name: setup snowflake credentials | ||
if: matrix.backend.name == 'snowflake' | ||
shell: bash | ||
run: | | ||
pyversion="${{ matrix.python-version }}" | ||
{ | ||
|
@@ -160,6 +175,9 @@ jobs: | |
echo "SNOWFLAKE_DATABASE=${SNOWFLAKE_DATABASE}" | ||
echo "SNOWFLAKE_SCHEMA=${SNOWFLAKE_SCHEMA}_python${pyversion//./}_${{ matrix.backend.key }}" | ||
echo "SNOWFLAKE_WAREHOUSE=${SNOWFLAKE_WAREHOUSE}" | ||
if ${{ matrix.backend.key == 'snowpark' }}; then | ||
echo "SNOWFLAKE_SNOWPARK=1" >> "$GITHUB_ENV" | ||
fi | ||
} >> "$GITHUB_ENV" | ||
env: | ||
SNOWFLAKE_USER: ${{ secrets.SNOWFLAKE_USER }} | ||
|
@@ -176,10 +194,6 @@ jobs: | |
aws-region: us-east-2 | ||
role-to-assume: arn:aws:iam::070284473168:role/ibis-project-athena | ||
|
||
- name: enable snowpark testing | ||
if: matrix.backend.key == 'snowpark' | ||
run: echo "SNOWFLAKE_SNOWPARK=1" >> "$GITHUB_ENV" | ||
|
||
- name: "run parallel tests: ${{ matrix.backend.name }}" | ||
run: just ci-check "${{ join(matrix.backend.extras, ' ') }} --extra examples" -m ${{ matrix.backend.name }} --numprocesses auto --dist loadgroup | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ jobs: | |
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected].2 | ||
- uses: actions/[email protected].3 | ||
id: generate_token | ||
with: | ||
app-id: ${{ secrets.APP_ID }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ jobs: | |
- name: install nix | ||
uses: DeterminateSystems/nix-installer-action@v16 | ||
|
||
- uses: actions/[email protected].2 | ||
- uses: actions/[email protected].3 | ||
id: generate-token | ||
with: | ||
app-id: ${{ secrets.SQUAWK_BOT_APP_ID }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 6 additions & 3 deletions
9
docs/_freeze/posts/campaign-finance/index/execute-results/html.json
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.