This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/master by this push:
new 67547efe6b7b [SPARK-54287][PYTHON] Add Python 3.14 support in
`pyspark-client` and `pyspark-connect`
67547efe6b7b is described below
commit 67547efe6b7bb22d53de0de19c14448e26e183e4
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Mon Nov 10 13:11:01 2025 -0800
[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 <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
---
python/packaging/client/setup.py | 1 +
python/packaging/connect/setup.py | 1 +
2 files changed, 2 insertions(+)
diff --git a/python/packaging/client/setup.py b/python/packaging/client/setup.py
index c378d223cfcc..b9dfce056a06 100755
--- a/python/packaging/client/setup.py
+++ b/python/packaging/client/setup.py
@@ -221,6 +221,7 @@ try:
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
+ "Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Typing :: Typed",
diff --git a/python/packaging/connect/setup.py
b/python/packaging/connect/setup.py
index bd4d6fc93b6f..03915f286cee 100755
--- a/python/packaging/connect/setup.py
+++ b/python/packaging/connect/setup.py
@@ -131,6 +131,7 @@ try:
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
+ "Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Typing :: Typed",
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]