Skip to content

Commit 2bd9212

Browse files
dongjoon-hyunhuangxiaopingRD
authored andcommitted
[SPARK-54213][PYTHON][CONNECT] Remove Python 3.9 from Spark Connect
### What changes were proposed in this pull request? This PR aims to remove `Python 3.9` from `Spark Connect`. ### Why are the changes needed? `Python 3.9` reached the end-of-life on 2025-10-31. - https://devguide.python.org/versions/#unsupported-versions Apache Spark 4.1.0 dropped `Python 3.9` support and we don't have a test coverage. We had better make it clear even that is `Spark Connect` module. - apache#51259 - apache#51416 - apache#51631 - apache#51371 ### Does this PR introduce _any_ user-facing change? No behavior change for Python 3.10+ users. ### How was this patch tested? Pass the CIs and manual review. ### Was this patch authored or co-authored using generative AI tooling? No. Closes apache#52911 from dongjoon-hyun/SPARK-54213. Authored-by: Dongjoon Hyun <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
1 parent c8083d2 commit 2bd9212

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

python/packaging/connect/setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,10 +124,9 @@
124124
"numpy>=%s" % _minimum_numpy_version,
125125
"pyyaml>=%s" % _minimum_pyyaml_version,
126126
],
127-
python_requires=">=3.9",
127+
python_requires=">=3.10",
128128
classifiers=[
129129
"Development Status :: 5 - Production/Stable",
130-
"Programming Language :: Python :: 3.9",
131130
"Programming Language :: Python :: 3.10",
132131
"Programming Language :: Python :: 3.11",
133132
"Programming Language :: Python :: 3.12",

0 commit comments

Comments
 (0)