Skip to content

Commit 8b4a9ad

Browse files
committed
[SPARK-54287][PYTHON] Add Python 3.14 support in pyspark-client and pyspark-connect
### What changes were proposed in this pull request? This PR aims to add `Python 3.14` support in `pyspark-client` and `pyspark-connect` for Apache Spark 4.1.0. ### Why are the changes needed? Apache Spark 4.0+ has three Python packages. - `pyspark` contains the whole package to run PySpark, Spark Classic by default - `pyspark-connect` depends on `pyspark`, Spark Connect by default - `pyspark-client` only contains Python files to work as a Spark Connect client Like `pyspark` package, we need to add it consistently. - #52556 ### Does this PR introduce _any_ user-facing change? No behavior change because Python 3.14 support is newly added at Apache Spark 4.1.0. ### How was this patch tested? Pass the CIs. ### Was this patch authored or co-authored using generative AI tooling? No. Closes #52981 from dongjoon-hyun/SPARK-54287. Authored-by: Dongjoon Hyun <dongjoon@apache.org> Signed-off-by: Dongjoon Hyun <dongjoon@apache.org> (cherry picked from commit 67547ef) Signed-off-by: Dongjoon Hyun <dongjoon@apache.org>
1 parent 4c498c3 commit 8b4a9ad

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

python/packaging/client/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,7 @@
221221
"Programming Language :: Python :: 3.11",
222222
"Programming Language :: Python :: 3.12",
223223
"Programming Language :: Python :: 3.13",
224+
"Programming Language :: Python :: 3.14",
224225
"Programming Language :: Python :: Implementation :: CPython",
225226
"Programming Language :: Python :: Implementation :: PyPy",
226227
"Typing :: Typed",

python/packaging/connect/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@
131131
"Programming Language :: Python :: 3.11",
132132
"Programming Language :: Python :: 3.12",
133133
"Programming Language :: Python :: 3.13",
134+
"Programming Language :: Python :: 3.14",
134135
"Programming Language :: Python :: Implementation :: CPython",
135136
"Programming Language :: Python :: Implementation :: PyPy",
136137
"Typing :: Typed",

0 commit comments

Comments
 (0)