-
Notifications
You must be signed in to change notification settings - Fork 209
New issue
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
Increase the minimal required pyarrow version to 14.0.0 #1090
Conversation
3aba878
to
b0f147f
Compare
pyproject.toml
Outdated
@@ -94,7 +94,7 @@ pytest-mock = "3.14.0" | |||
pyspark = "3.5.2" | |||
cython = "3.0.11" | |||
deptry = ">=0.14,<0.20" | |||
docutils = "!=0.21.post1" # https://github.com/python-poetry/poetry/issues/9248#issuecomment-2026240520 | |||
docutils = "!=0.21.post1" # https://github.com/python-poetry/poetry/issues/9248#issuecomment-2026240520 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just curious, what happened here? 🙂
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My auto-formatter is doing more than what I want it to do.
@@ -61,7 +61,7 @@ fsspec = ">=2023.1.0,<2025.1.0" | |||
pyparsing = ">=3.1.0,<4.0.0" | |||
zstandard = ">=0.13.0,<1.0.0" | |||
tenacity = ">=8.2.3,<10.0.0" | |||
pyarrow = { version = ">=9.0.0,<18.0.0", optional = true } | |||
pyarrow = { version = ">=14.0.0,<18.0.0", optional = true } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for raising this issue and correcting the constraints!
We rely on the 'promote_options' argument in the 'concat_tables' method, which is only supported in version 14.0 and above.
b0f147f
to
367748b
Compare
We rely on the 'promote_options' argument in the 'concat_tables' method, which is only supported in version 14.0 and above.
We rely on the 'promote_options' argument in the 'concat_tables' method, which is only supported in version 14.0 and above.
We rely on the 'promote_options' argument in the 'concat_tables' method, which is only supported in version 14.0 and above.
Solves #1089