Skip to content

Commit 85837bf

Browse files
committed
Merge branch 'main' of github.com:rerun-io/datafusion-python into nick/typos
2 parents f05d59e + 61f981b commit 85837bf

32 files changed

+2405
-1446
lines changed

.asf.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,11 @@ github:
3131
issues: true
3232
protected_branches:
3333
main:
34-
required_pull_request_reviews:
35-
required_approving_review_count: 1
34+
required_status_checks:
35+
# require branches to be up-to-date before merging
36+
strict: true
37+
# don't require any jobs to pass
38+
contexts: []
3639

3740
staging:
3841
whoami: asf-staging

.github/workflows/build.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
build:
2828
runs-on: ubuntu-latest
2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131
- name: Install Python
3232
uses: actions/setup-python@v5
3333
with:
@@ -55,7 +55,7 @@ jobs:
5555
generate-license:
5656
runs-on: ubuntu-latest
5757
steps:
58-
- uses: actions/checkout@v4
58+
- uses: actions/checkout@v5
5959
- uses: astral-sh/setup-uv@v6
6060
with:
6161
enable-cache: true
@@ -77,7 +77,7 @@ jobs:
7777
python-version: ["3.10"]
7878
os: [macos-latest, windows-latest]
7979
steps:
80-
- uses: actions/checkout@v4
80+
- uses: actions/checkout@v5
8181

8282
- uses: actions/setup-python@v5
8383
with:
@@ -87,7 +87,7 @@ jobs:
8787

8888
- run: rm LICENSE.txt
8989
- name: Download LICENSE.txt
90-
uses: actions/download-artifact@v4
90+
uses: actions/download-artifact@v5
9191
with:
9292
name: python-wheel-license
9393
path: .
@@ -133,7 +133,7 @@ jobs:
133133
matrix:
134134
python-version: ["3.10"]
135135
steps:
136-
- uses: actions/checkout@v4
136+
- uses: actions/checkout@v5
137137

138138
- uses: actions/setup-python@v5
139139
with:
@@ -143,7 +143,7 @@ jobs:
143143

144144
- run: rm LICENSE.txt
145145
- name: Download LICENSE.txt
146-
uses: actions/download-artifact@v4
146+
uses: actions/download-artifact@v5
147147
with:
148148
name: python-wheel-license
149149
path: .
@@ -177,10 +177,10 @@ jobs:
177177
name: Manylinux x86_64
178178
runs-on: ubuntu-latest
179179
steps:
180-
- uses: actions/checkout@v4
180+
- uses: actions/checkout@v5
181181
- run: rm LICENSE.txt
182182
- name: Download LICENSE.txt
183-
uses: actions/download-artifact@v4
183+
uses: actions/download-artifact@v5
184184
with:
185185
name: python-wheel-license
186186
path: .
@@ -206,10 +206,10 @@ jobs:
206206
name: Manylinux arm64
207207
runs-on: ubuntu-latest
208208
steps:
209-
- uses: actions/checkout@v4
209+
- uses: actions/checkout@v5
210210
- run: rm LICENSE.txt
211211
- name: Download LICENSE.txt
212-
uses: actions/download-artifact@v4
212+
uses: actions/download-artifact@v5
213213
with:
214214
name: python-wheel-license
215215
path: .
@@ -236,10 +236,10 @@ jobs:
236236
name: Source distribution
237237
runs-on: ubuntu-latest
238238
steps:
239-
- uses: actions/checkout@v4
239+
- uses: actions/checkout@v5
240240
- run: rm LICENSE.txt
241241
- name: Download LICENSE.txt
242-
uses: actions/download-artifact@v4
242+
uses: actions/download-artifact@v5
243243
with:
244244
name: python-wheel-license
245245
path: .
@@ -282,7 +282,7 @@ jobs:
282282
# needs: [build-manylinux, build-python-mac-win]
283283
# runs-on: ubuntu-latest
284284
# steps:
285-
# - uses: actions/download-artifact@v4
285+
# - uses: actions/download-artifact@v5
286286
# - name: Publish to PyPI
287287
# uses: pypa/gh-action-pypi-publish@master
288288
# with:

.github/workflows/dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-latest
2626
steps:
2727
- name: Checkout
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v5
2929
- name: Setup Python
3030
uses: actions/setup-python@v5
3131
with:

.github/workflows/docs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ jobs:
3838
exit 1
3939
fi
4040
- name: Checkout docs sources
41-
uses: actions/checkout@v4
41+
uses: actions/checkout@v5
4242
- name: Checkout docs target branch
4343
if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref_type == 'tag')
44-
uses: actions/checkout@v4
44+
uses: actions/checkout@v5
4545
with:
4646
fetch-depth: 0
4747
ref: ${{ steps.target-branch.outputs.value }}

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- "stable"
4343

4444
steps:
45-
- uses: actions/checkout@v4
45+
- uses: actions/checkout@v5
4646

4747
- name: Setup Rust Toolchain
4848
uses: dtolnay/rust-toolchain@stable

0 commit comments

Comments
 (0)