Skip to content

Commit 3ced757

Browse files
[Spark] Change Scala version to match Spark 4.0 (#5393)
#### Which Delta project/connector is this regarding? - [ ] Spark - [ ] Standalone - [ ] Flink - [ ] Kernel - [X] Other (Build) ## Description Matches Scala version of Spark 4.0 https://github.com/apache/spark/blob/408746406be15692b4caafbeae4ddbd077d719d1/pom.xml#L173 ## How was this patch tested? Unit tests ## Does this PR introduce _any_ user-facing changes? No --------- Signed-off-by: Felipe Fujiy Pessoto <fepessot@microsoft.com>
1 parent c868d09 commit 3ced757

File tree

16 files changed

+19
-19
lines changed

16 files changed

+19
-19
lines changed

.github/workflows/connectors_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
# These Scala versions must match those in the build.sbt
10-
scala: [2.13.13]
10+
scala: [2.13.16]
1111
steps:
1212
- uses: actions/checkout@v2
1313
- name: install java

.github/workflows/iceberg_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
# These Scala versions must match those in the build.sbt
10-
scala: [2.13.13]
10+
scala: [2.13.16]
1111
env:
1212
SCALA_VERSION: ${{ matrix.scala }}
1313
steps:

.github/workflows/kernel_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
matrix:
2121
shard: [0, 1, 2, 3]
2222
env:
23-
SCALA_VERSION: 2.13.13
23+
SCALA_VERSION: 2.13.16
2424
NUM_SHARDS: 4
2525
DISABLE_UNIDOC: true # Another unidoc workflow will test unidoc.
2626
TEST_PARALLELISM_COUNT: 4

.github/workflows/spark_examples_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
# These Scala versions must match those in the build.sbt
10-
scala: [2.13.13]
10+
scala: [2.13.16]
1111
env:
1212
SCALA_VERSION: ${{ matrix.scala }}
1313
steps:

.github/workflows/spark_master_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
# These Scala versions must match those in the build.sbt
10-
scala: [2.13.13]
10+
scala: [2.13.16]
1111
# Important: This list of shards must be [0..NUM_SHARDS - 1]
1212
shard: [0, 1, 2, 3]
1313
env:

.github/workflows/spark_python_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
# These Scala versions must match those in the build.sbt
10-
scala: [2.13.13]
10+
scala: [2.13.16]
1111
env:
1212
SCALA_VERSION: ${{ matrix.scala }}
1313
steps:

.github/workflows/spark_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
# These Scala versions must match those in the build.sbt
10-
scala: [2.13.13]
10+
scala: [2.13.16]
1111
# Important: This list of shards must be [0..NUM_SHARDS - 1]
1212
shard: [0, 1, 2, 3]
1313
env:

.github/workflows/unidoc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
strategy:
88
matrix:
99
# These Scala versions must match those in the build.sbt
10-
scala: [2.13.13]
10+
scala: [2.13.16]
1111
steps:
1212
- name: install java
1313
uses: actions/setup-java@v3

.github/workflows/unity_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
name: "Delta Unity Tests"
66
runs-on: ubuntu-24.04
77
env:
8-
SCALA_VERSION: 2.13.13
8+
SCALA_VERSION: 2.13.16
99
steps:
1010
- uses: actions/checkout@v3
1111
- uses: technote-space/get-diff-action@v4

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@ import Mima._
4040
import Unidoc._
4141

4242
// Scala versions
43-
val scala213 = "2.13.13"
43+
val scala213 = "2.13.16"
4444
val all_scala_versions = Seq(scala213)
4545

4646
// Due to how publishArtifact is determined for javaOnlyReleaseSettings, incl. storage
4747
// It was necessary to change default_scala_version to scala213 in build.sbt
4848
// to build the project with Scala 2.13 only
4949
// As a setting, it's possible to set it on command line easily
50-
// sbt 'set default_scala_version := 2.13.13' [commands]
50+
// sbt 'set default_scala_version := 2.13.16' [commands]
5151
// FIXME Why not use scalaVersion?
5252
val default_scala_version = settingKey[String]("Default Scala version")
5353
Global / default_scala_version := scala213

0 commit comments

Comments
 (0)