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 scala-parallel-collections to 1.1.0 #4582

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
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ lazy val warningSuppression = Seq(
"cat=deprecation&origin=chisel3\\.util\\.experimental\\.BoringUtils.*:s",
"cat=deprecation&origin=chisel3\\.experimental\\.IntrinsicModule:s",
"cat=deprecation&origin=chisel3\\.ltl.*:s",
"cat=deprecation&msg=Looking up Modules is deprecated:s",
"cat=deprecation&msg=Looking up Modules is deprecated:s"
).mkString(",")
)

Expand Down Expand Up @@ -124,7 +124,7 @@ lazy val firrtlSettings = Seq(
"-language:implicitConversions",
"-Yrangepos", // required by SemanticDB compiler plugin
"-Xsource:3",
"-Xsource-features:infer-override",
"-Xsource-features:infer-override"
),
// Always target Java8 for maximum compatibility
javacOptions ++= Seq("-source", "1.8", "-target", "1.8"),
Expand All @@ -140,7 +140,7 @@ lazy val firrtlSettings = Seq(
),
scalacOptions += "-Ymacro-annotations",
// starting with scala 2.13 the parallel collections are separate from the standard library
libraryDependencies += "org.scala-lang.modules" %% "scala-parallel-collections" % "1.0.4",
libraryDependencies += "org.scala-lang.modules" %% "scala-parallel-collections" % "1.1.0",
Test / scalacOptions ++= Seq(
"-Xsource-features:package-prefix-implicits"
)
Expand Down Expand Up @@ -316,7 +316,7 @@ lazy val core = (project in file("core"))
"-unchecked",
"-Xcheckinit",
"-Xlint:infer-any",
"-Xsource:3",
"-Xsource:3"
// , "-Xlint:missing-interpolator"
)
)
Expand All @@ -342,7 +342,7 @@ lazy val chisel = (project in file("."))
.settings(
// Suppress Scala 3 behavior requiring explicit types on implicit definitions
// Note this must come before the -Wconf is warningSuppression
Test / scalacOptions += "-Wconf:cat=other-implicit-type:s",
Test / scalacOptions += "-Wconf:cat=other-implicit-type:s"
)
.settings(warningSuppression: _*)
.settings(fatalWarningsSettings: _*)
Expand Down
Loading