Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update sparkVersion to v3.3.1 #38

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import sbt._
import org.scalajs.sbtplugin.ScalaJSPlugin.autoImport._
import org.portablescala.sbtplatformdeps.PlatformDepsPlugin.autoImport._
object Deps {
val sparkVersion = "3.2.1"
val sparkVersion = "3.3.1"
val scalafixVersion = "0.10.1"
val sparkBasic = Seq(
"org.apache.spark" %% "spark-core" % sparkVersion,
Expand All @@ -27,8 +27,8 @@ object Deps {
// )
val fs2 = Def.setting(
Seq(
"co.fs2" %%% "fs2-core" % "3.2.12",
"co.fs2" %%% "fs2-io" % "3.2.12"
"co.fs2" %%% "fs2-core" % "3.3.12",
"co.fs2" %%% "fs2-io" % "3.3.12"
)
)
val http4sVersion = "0.23.13"
Expand Down