Skip to content

Commit 800806f

Browse files
committed
Merge branch 'main' into feat/lazy-catalog-list-responses
2 parents 60f95fb + a56795f commit 800806f

File tree

103 files changed

+7152
-2049
lines changed

Some content is hidden

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

103 files changed

+7152
-2049
lines changed

.asf.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# https://cwiki.apache.org/confluence/display/INFRA/Git+-+.asf.yaml+features
2222

2323
github:
24-
description: "Apache PyIceberg"
24+
description: "PyIceberg"
2525
homepage: https://py.iceberg.apache.org/
2626
labels:
2727
- iceberg

.github/ISSUE_TEMPLATE/iceberg_bug_report.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ body:
2828
description: What Apache Iceberg version are you using?
2929
multiple: false
3030
options:
31-
- "0.9.1 (latest release)"
31+
- "0.10.0 (latest release)"
32+
- "0.9.1"
3233
- "0.9.0"
3334
- "0.8.1"
3435
- "0.8.0"

.github/pull_request_template.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ Thanks for opening a pull request!
77

88
# Rationale for this change
99

10-
# Are these changes tested?
10+
## Are these changes tested?
1111

12-
# Are there any user-facing changes?
12+
## Are there any user-facing changes?
1313

1414
<!-- In the case of user-facing changes, please add the changelog label. -->

.github/workflows/check-md-link.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ jobs:
3636
runs-on: ubuntu-latest
3737
steps:
3838
- uses: actions/checkout@master
39-
- uses: gaurav-nelson/github-action-markdown-link-check@v1
39+
- uses: tcort/github-action-markdown-link-check@v1

.github/workflows/license_check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ jobs:
2424
rat:
2525
runs-on: ubuntu-22.04
2626
steps:
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v5
2828
- run: dev/check-license

.github/workflows/nightly-pypi-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ jobs:
3131
outputs:
3232
VERSION: ${{ steps.set-version.outputs.VERSION }}
3333
steps:
34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v5
3535
with:
3636
fetch-depth: 1
3737

38-
- uses: actions/setup-python@v5
38+
- uses: actions/setup-python@v6
3939
with:
4040
python-version: 3.12
4141

@@ -71,7 +71,7 @@ jobs:
7171

7272
steps:
7373
- name: Download all the artifacts
74-
uses: actions/download-artifact@v4
74+
uses: actions/download-artifact@v5
7575
with:
7676
merge-multiple: true
7777
path: dist/

.github/workflows/pypi-build-artifacts.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ jobs:
3535
os: [ ubuntu-22.04, windows-2022, macos-13, macos-14 ]
3636

3737
steps:
38-
- uses: actions/checkout@v4
38+
- uses: actions/checkout@v5
3939
with:
4040
fetch-depth: 1
4141

42-
- uses: actions/setup-python@v5
42+
- uses: actions/setup-python@v6
4343
with:
4444
python-version: |
4545
3.9
@@ -62,7 +62,7 @@ jobs:
6262
if: startsWith(matrix.os, 'ubuntu')
6363

6464
- name: Build wheels
65-
uses: pypa/cibuildwheel@v3.0.0
65+
uses: pypa/cibuildwheel@v3.1.4
6666
with:
6767
output-dir: wheelhouse
6868
config-file: "pyproject.toml"

.github/workflows/python-ci-docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ jobs:
3535
runs-on: ubuntu-22.04
3636

3737
steps:
38-
- uses: actions/checkout@v4
39-
- name: Install poetry
40-
run: make install-poetry
41-
- uses: actions/setup-python@v5
38+
- uses: actions/checkout@v5
39+
- uses: actions/setup-python@v6
4240
with:
4341
python-version: 3.12
42+
- name: Install poetry
43+
run: make install-poetry
4444
- name: Install
4545
run: make docs-install
4646
- name: Build docs

.github/workflows/python-ci.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,12 @@ jobs:
5050
python: ['3.9', '3.10', '3.11', '3.12']
5151

5252
steps:
53-
- uses: actions/checkout@v4
54-
- name: Install poetry
55-
run: make install-poetry
56-
- uses: actions/setup-python@v5
53+
- uses: actions/checkout@v5
54+
- uses: actions/setup-python@v6
5755
with:
5856
python-version: ${{ matrix.python }}
59-
cache: poetry
60-
cache-dependency-path: ./poetry.lock
57+
- name: Install poetry
58+
run: make install-poetry
6159
- name: Install system dependencies
6260
run: sudo apt-get update && sudo apt-get install -y libkrb5-dev # for kerberos
6361
- name: Install
@@ -76,7 +74,7 @@ jobs:
7674
python: ['3.9', '3.10', '3.11', '3.12']
7775

7876
steps:
79-
- uses: actions/checkout@v4
77+
- uses: actions/checkout@v5
8078
- name: Install system dependencies
8179
run: sudo apt-get update && sudo apt-get install -y libkrb5-dev # for kerberos
8280
- name: Install

.github/workflows/python-release-docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ jobs:
3030
runs-on: ubuntu-22.04
3131

3232
steps:
33-
- uses: actions/checkout@v4
34-
- name: Install poetry
35-
run: make install-poetry
36-
- uses: actions/setup-python@v5
33+
- uses: actions/checkout@v5
34+
- uses: actions/setup-python@v6
3735
with:
3836
python-version: ${{ matrix.python }}
37+
- name: Install poetry
38+
run: make install-poetry
3939
- name: Install docs
4040
run: make docs-install
4141
- name: Build docs

0 commit comments

Comments
 (0)