Skip to content

Commit 3f4ba72

Browse files
committed
[SPARK-51227][PYTHON][CONNECT] Fix PySpark Connect _minimum_grpc_version to 1.67.0
### What changes were proposed in this pull request? This PR aims to fix PySpark Connect `_minimum_grpc_version` from 1.59.3 to 1.67.0 correctly. https://github.com/apache/spark/blob/c36916f7a112dc6c6505c12d68c3f63c5aa31db2/python/docs/source/getting_started/install.rst?plain=1#L211 https://github.com/apache/spark/blob/c36916f7a112dc6c6505c12d68c3f63c5aa31db2/dev/spark-test-image/python-minimum/Dockerfile#L76 ### Why are the changes needed? It seems that we missed to this at - apache#44929 - apache#48524 ### Does this PR introduce _any_ user-facing change? This will make it sure that PySpark Connect installation meets the minimum requirement correctly. ### How was this patch tested? Pass the CIs. ### Was this patch authored or co-authored using generative AI tooling? No. Closes apache#49968 from dongjoon-hyun/SPARK-51227. Authored-by: Dongjoon Hyun <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
1 parent b8d395e commit 3f4ba72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/packaging/connect/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
_minimum_pandas_version = "2.0.0"
134134
_minimum_numpy_version = "1.21"
135135
_minimum_pyarrow_version = "11.0.0"
136-
_minimum_grpc_version = "1.59.3"
136+
_minimum_grpc_version = "1.67.0"
137137
_minimum_googleapis_common_protos_version = "1.65.0"
138138

139139
with open("README.md") as f:

0 commit comments

Comments
 (0)