Skip to content

Commit c097ff5

Browse files
authored
[3.2][Spark] Upgrade Spark dependency to 3.5.3 (#3717)
1 parent d970fed commit c097ff5

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/spark_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
# `-SNAPSHOT` in version (e.g. `3.3.0-SNAPSHOT`) as the version is picked up from
5757
# the`version.sbt` file.
5858
pipenv run pip install pip==24.0 setuptools==69.5.1 wheel==0.43.0
59-
pipenv run pip install pyspark==3.5.2
59+
pipenv run pip install pyspark==3.5.3
6060
pipenv run pip install flake8==3.5.0 pypandoc==1.3.3
6161
pipenv run pip install importlib_metadata==3.10.0
6262
pipenv run pip install mypy==0.982

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ RUN apt-get install -y git
3131
# cryptography. Otherwise, building wheels for these packages fails.
3232
RUN pip3 install --upgrade pip
3333

34-
RUN pip3 install pyspark==3.5.2
34+
RUN pip3 install pyspark==3.5.3
3535

3636
RUN pip3 install mypy==0.982
3737

benchmarks/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ scalaVersion := "2.12.18"
2020
lazy val root = (project in file("."))
2121
.settings(
2222
name := "benchmarks",
23-
libraryDependencies += "org.apache.spark" %% "spark-sql" % "3.5.2" % "provided",
23+
libraryDependencies += "org.apache.spark" %% "spark-sql" % "3.5.3" % "provided",
2424
libraryDependencies += "com.github.scopt" %% "scopt" % "4.0.1",
2525
libraryDependencies += "com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.13.1",
2626

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ val all_scala_versions = Seq(scala212, scala213)
3434
val default_scala_version = settingKey[String]("Default Scala version")
3535
Global / default_scala_version := scala212
3636

37-
val LATEST_RELEASED_SPARK_VERSION = "3.5.2"
37+
val LATEST_RELEASED_SPARK_VERSION = "3.5.3"
3838
val SPARK_MASTER_VERSION = "4.0.0-SNAPSHOT"
3939
val sparkVersion = settingKey[String]("Spark version")
4040
spark / sparkVersion := getSparkVersion()

docs/environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ dependencies:
3333
- packaging==23.2
3434
- py4j==0.10.9.7
3535
- pygments==2.16.1
36-
- pyspark==3.5.2
36+
- pyspark==3.5.3
3737
- pytz==2023.3.post1
3838
- requests==2.31.0
3939
- six==1.16.0

examples/scala/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def getMajorMinor(version: String): (Int, Int) = {
4444
}
4545
val lookupSparkVersion: PartialFunction[(Int, Int), String] = {
4646
// versions 3.0.0 and above
47-
case (major, minor) if major >= 3 => "3.5.2"
47+
case (major, minor) if major >= 3 => "3.5.3"
4848
// versions 2.4.x
4949
case (major, minor) if major == 2 && minor == 4 => "3.4.0"
5050
// versions 2.3.x

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def run(self):
6565
'delta': ['py.typed'],
6666
},
6767
install_requires=[
68-
'pyspark>=3.5.2,<3.6.0',
68+
'pyspark>=3.5.3,<3.6.0',
6969
'importlib_metadata>=1.0.0',
7070
],
7171
python_requires='>=3.6',

0 commit comments

Comments
 (0)