Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/connectors_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
# These Scala versions must match those in the build.sbt
scala: [2.13.13]
scala: [2.13.16]
steps:
- uses: actions/checkout@v2
- name: install java
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/iceberg_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
# These Scala versions must match those in the build.sbt
scala: [2.13.13]
scala: [2.13.16]
env:
SCALA_VERSION: ${{ matrix.scala }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/kernel_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
matrix:
shard: [0, 1, 2, 3]
env:
SCALA_VERSION: 2.13.13
SCALA_VERSION: 2.13.16
NUM_SHARDS: 4
DISABLE_UNIDOC: true # Another unidoc workflow will test unidoc.
TEST_PARALLELISM_COUNT: 4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/spark_examples_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
# These Scala versions must match those in the build.sbt
scala: [2.13.13]
scala: [2.13.16]
env:
SCALA_VERSION: ${{ matrix.scala }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/spark_master_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
# These Scala versions must match those in the build.sbt
scala: [2.13.13]
scala: [2.13.16]
# Important: This list of shards must be [0..NUM_SHARDS - 1]
shard: [0, 1, 2, 3]
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/spark_python_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
# These Scala versions must match those in the build.sbt
scala: [2.13.13]
scala: [2.13.16]
env:
SCALA_VERSION: ${{ matrix.scala }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/spark_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
# These Scala versions must match those in the build.sbt
scala: [2.13.13]
scala: [2.13.16]
# Important: This list of shards must be [0..NUM_SHARDS - 1]
shard: [0, 1, 2, 3]
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unidoc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
strategy:
matrix:
# These Scala versions must match those in the build.sbt
scala: [2.13.13]
scala: [2.13.16]
steps:
- name: install java
uses: actions/setup-java@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unity_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
name: "Delta Unity Tests"
runs-on: ubuntu-24.04
env:
SCALA_VERSION: 2.13.13
SCALA_VERSION: 2.13.16
steps:
- uses: actions/checkout@v3
- uses: technote-space/get-diff-action@v4
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ import Mima._
import Unidoc._

// Scala versions
val scala213 = "2.13.13"
val scala213 = "2.13.16"
val all_scala_versions = Seq(scala213)

// Due to how publishArtifact is determined for javaOnlyReleaseSettings, incl. storage
// It was necessary to change default_scala_version to scala213 in build.sbt
// to build the project with Scala 2.13 only
// As a setting, it's possible to set it on command line easily
// sbt 'set default_scala_version := 2.13.13' [commands]
// sbt 'set default_scala_version := 2.13.16' [commands]
// FIXME Why not use scalaVersion?
val default_scala_version = settingKey[String]("Default Scala version")
Global / default_scala_version := scala213
Expand Down
2 changes: 1 addition & 1 deletion connectors/examples/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ scalaVersion := "2.12.18"
version := "0.1.0"

lazy val commonSettings = Seq(
crossScalaVersions := Seq("2.13.13", "2.12.18", "2.11.12"),
crossScalaVersions := Seq("2.13.16", "2.12.18", "2.11.12"),
resolvers += Resolver.mavenLocal,
libraryDependencies ++= Seq(
"io.delta" %% "delta-standalone" % getStandaloneVersion(),
Expand Down
4 changes: 2 additions & 2 deletions connectors/examples/run_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def __exit__(self, tpe, value, traceback):

build/sbt '++2.11.12 publishM2'
build/sbt '++2.12.18 publishM2'
build/sbt '++2.13.13 publishM2'
build/sbt '++2.13.16 publishM2'
"""

# get the version of the package
Expand Down Expand Up @@ -150,4 +150,4 @@ def __exit__(self, tpe, value, traceback):

run_sbt_proj(root_dir, proj, className, args.version, args.maven_repo, "2.11.12")
run_sbt_proj(root_dir, proj, className, args.version, args.maven_repo, "2.12.18")
run_sbt_proj(root_dir, proj, className, args.version, args.maven_repo, "2.13.13")
run_sbt_proj(root_dir, proj, className, args.version, args.maven_repo, "2.13.16")
2 changes: 1 addition & 1 deletion examples/scala/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ name := "example"
organization := "com.example"
organizationName := "example"

val scala213 = "2.13.13"
val scala213 = "2.13.16"
val icebergVersion = "1.4.1"
val defaultDeltaVersion = {
val versionFileContent = IO.read(file("../../version.sbt"))
Expand Down
2 changes: 1 addition & 1 deletion run-tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def run_sbt_tests(root_dir, test_group, coverage, scala_version=None, shard=None
cmd += ["+ %s" % test_cmd] # build/sbt ... "+ project/test" ...
else:
# when no scala version is specified, run test with only the specified scala version
cmd += ["++ %s" % scala_version, test_cmd] # build/sbt ... "++ 2.13.13" "project/test" ...
cmd += ["++ %s" % scala_version, test_cmd] # build/sbt ... "++ 2.13.16" "project/test" ...

if coverage:
cmd += ["coverageAggregate", "coverageOff"]
Expand Down
Loading