Skip to content

Commit 08fb49f

Browse files
committed
Merge branch 'main' of github.com:apache/iceberg-python into fd-add-initial-default-to-update-schema
2 parents 92ff4fe + 7a6a7c8 commit 08fb49f

File tree

6 files changed

+22
-20
lines changed

6 files changed

+22
-20
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
if: startsWith(matrix.os, 'ubuntu')
6363

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
if: startsWith(matrix.os, 'ubuntu')
5858

5959
- name: Build wheels
60-
uses: pypa/cibuildwheel@v2.23.1
60+
uses: pypa/cibuildwheel@v2.23.2
6161
with:
6262
output-dir: wheelhouse
6363
config-file: "pyproject.toml"

poetry.lock

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyiceberg/io/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@
6363
S3_PROXY_URI = "s3.proxy-uri"
6464
S3_CONNECT_TIMEOUT = "s3.connect-timeout"
6565
S3_REQUEST_TIMEOUT = "s3.request-timeout"
66+
S3_SIGNER = "s3.signer"
6667
S3_SIGNER_URI = "s3.signer.uri"
6768
S3_SIGNER_ENDPOINT = "s3.signer.endpoint"
6869
S3_SIGNER_ENDPOINT_DEFAULT = "v1/aws/s3/sign"

pyiceberg/io/fsspec.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@
6767
S3_REQUEST_TIMEOUT,
6868
S3_SECRET_ACCESS_KEY,
6969
S3_SESSION_TOKEN,
70+
S3_SIGNER,
7071
S3_SIGNER_ENDPOINT,
7172
S3_SIGNER_ENDPOINT_DEFAULT,
7273
S3_SIGNER_URI,
@@ -137,7 +138,7 @@ def _s3(properties: Properties) -> AbstractFileSystem:
137138
config_kwargs = {}
138139
register_events: Dict[str, Callable[[Properties], None]] = {}
139140

140-
if signer := properties.get("s3.signer"):
141+
if signer := properties.get(S3_SIGNER):
141142
logger.info("Loading signer %s", signer)
142143
if signer_func := SIGNERS.get(signer):
143144
signer_func_with_properties = partial(signer_func, properties)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ mkdocs = "1.6.1"
106106
griffe = "1.6.2"
107107
jinja2 = "3.1.6"
108108
mkdocstrings = "0.29.0"
109-
mkdocstrings-python = "1.16.7"
109+
mkdocstrings-python = "1.16.8"
110110
mkdocs-literate-nav = "0.6.2"
111111
mkdocs-autorefs = "1.4.1"
112112
mkdocs-gen-files = "0.5.0"

0 commit comments

Comments
 (0)