Skip to content

Commit faa4d19

Browse files
committed
[SPARK-54849][PYTHON][FOLLOW-UP] Update the version in require_minimum_pyarrow_version
### What changes were proposed in this pull request? Update the version in `require_minimum_pyarrow_version` ### Why are the changes needed? this place was missing in #53619 ### Does this PR introduce _any_ user-facing change? no ### How was this patch tested? ci ### Was this patch authored or co-authored using generative AI tooling? no Closes #53645 from zhengruifeng/require_minimum_pyarrow_version. Authored-by: Ruifeng Zheng <[email protected]> Signed-off-by: Ruifeng Zheng <[email protected]>
1 parent f80b919 commit faa4d19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/pyspark/sql/pandas/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def require_minimum_pandas_version() -> None:
6161
def require_minimum_pyarrow_version() -> None:
6262
"""Raise ImportError if minimum version of pyarrow is not installed"""
6363
# TODO(HyukjinKwon): Relocate and deduplicate the version specification.
64-
minimum_pyarrow_version = "15.0.0"
64+
minimum_pyarrow_version = "18.0.0"
6565

6666
import os
6767

0 commit comments

Comments
 (0)