Skip to content

Commit

Permalink
Update sqlite-jdbc to 3.45.2.0 (#647)
Browse files Browse the repository at this point in the history
Co-authored-by: scala-steward-projectglow[bot] <159218053+scala-steward-projectglow[bot]@users.noreply.github.com>
  • Loading branch information
scala-steward-projectglow[bot] committed Mar 17, 2024
1 parent 55da6e7 commit 3873351
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ def majorMinorVersion(version: String): String = {

val defaultScalaVersion = Map("3" -> scala212, "4" -> scala213)

ThisBuild / scalaVersion := sys.env.getOrElse("SCALA_VERSION", defaultScalaVersion(majorVersion(sparkVersion.value)))
ThisBuild / scalaVersion := sys
.env
.getOrElse("SCALA_VERSION", defaultScalaVersion(majorVersion(sparkVersion.value)))
ThisBuild / organization := "io.projectglow"
ThisBuild / scalastyleConfig := baseDirectory.value / "scalastyle-config.xml"
ThisBuild / publish / skip := true
Expand Down Expand Up @@ -171,7 +173,7 @@ ThisBuild / testCoreDependencies := Seq(
"org.apache.spark" %% "spark-core" % sparkVersion.value % "test" classifier "tests",
"org.apache.spark" %% "spark-mllib" % sparkVersion.value % "test" classifier "tests",
"org.apache.spark" %% "spark-sql" % sparkVersion.value % "test" classifier "tests",
"org.xerial" % "sqlite-jdbc" % "3.45.1.0" % "test"
"org.xerial" % "sqlite-jdbc" % "3.45.2.0" % "test"
)

lazy val coreDependencies = settingKey[Seq[ModuleID]]("coreDependencies")
Expand Down Expand Up @@ -230,7 +232,7 @@ lazy val core = (project in file("core"))
if (snapshotDeps.nonEmpty) {
sys.error("Found snapshot dependencies")
}
},
}
)

/**
Expand Down Expand Up @@ -304,7 +306,9 @@ lazy val python =
functionGenerationSettings,
Test / test := {
yapf.toTask(" --diff").value
pytest.toTask(s" --doctest-modules --cov=glow --cov-report xml --cov-report term python").value
pytest
.toTask(s" --doctest-modules --cov=glow --cov-report xml --cov-report term python")
.value
},
generatedFunctionsOutput := baseDirectory.value / "glow" / "functions.py",
functionsTemplate := baseDirectory.value / "glow" / "functions.py.TEMPLATE",
Expand Down Expand Up @@ -369,4 +373,3 @@ lazy val stagedRelease = (project in file("core/src/test"))
sparkVersion.value)}" % stableVersion.value % "test",
resolvers := Seq(MavenCache("local-sonatype-staging", sonatypeBundleDirectory.value))
)

0 comments on commit 3873351

Please sign in to comment.