We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
0.7.1 (latest release)
pyiceberg calls pyarrow concat_tables with promote_options here: https://github.com/apache/iceberg-python/blob/pyiceberg-0.7.1/pyiceberg/io/pyarrow.py#L1353
concat_tables
promote_options
promote_options is only available in and after pyarrow 14.0.0 (added in this PR: GH-36845: [C++][Python] Allow type promotion on pa.concat_tables arrow#36846)
pa.concat_tables
however pyarrow version is pinned to ">=9.0.0,<18.0.0" in https://github.com/apache/iceberg-python/blob/pyiceberg-0.7.1/pyproject.toml#L61, I think it should be updated to ">=14.0.0,<18.0.0"
The text was updated successfully, but these errors were encountered:
Thanks for reporting this. That makes sense to me. Is this something you would like to help contribute?
Sorry, something went wrong.
Hi @gli-chris-hao thank you for reporting this issue! @ndrluis has already made a contribution to fix this in main
No branches or pull requests
Apache Iceberg version
0.7.1 (latest release)
Please describe the bug 🐞
pyiceberg calls pyarrow
concat_tables
withpromote_options
here: https://github.com/apache/iceberg-python/blob/pyiceberg-0.7.1/pyiceberg/io/pyarrow.py#L1353promote_options
is only available in and after pyarrow 14.0.0 (added in this PR: GH-36845: [C++][Python] Allow type promotion onpa.concat_tables
arrow#36846)however pyarrow version is pinned to ">=9.0.0,<18.0.0" in https://github.com/apache/iceberg-python/blob/pyiceberg-0.7.1/pyproject.toml#L61, I think it should be updated to ">=14.0.0,<18.0.0"
The text was updated successfully, but these errors were encountered: