summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--build.sbt4
-rw-r--r--build.sc6
2 files changed, 5 insertions, 5 deletions
diff --git a/build.sbt b/build.sbt
index 2cffb8b7..93f2ba90 100644
--- a/build.sbt
+++ b/build.sbt
@@ -105,9 +105,9 @@ lazy val chiselSettings = Seq (
// An explicit dependency on junit seems to alleviate this.
libraryDependencies ++= Seq(
"junit" % "junit" % "4.12" % "test",
- "org.scalatest" %% "scalatest" % "3.0.5" % "test",
+ "org.scalatest" %% "scalatest" % "3.0.8" % "test",
"org.scalacheck" %% "scalacheck" % "1.14.0" % "test",
- "com.github.scopt" %% "scopt" % "3.7.0"
+ "com.github.scopt" %% "scopt" % "3.7.1"
),
javacOptions ++= javacOptionsVersion(scalaVersion.value)
) ++ (
diff --git a/build.sc b/build.sc
index 908f4472..34f83b01 100644
--- a/build.sc
+++ b/build.sc
@@ -215,13 +215,13 @@ trait AbstractChiselModule extends PublishChiselModule with CommonBuild.BuildInf
}
override def ivyDeps = Agg(
- ivy"com.github.scopt::scopt:3.6.0"
+ ivy"com.github.scopt::scopt:3.7.1"
) ++ chiselDeps
object test extends Tests {
override def ivyDeps = Agg(
- ivy"org.scalatest::scalatest:3.0.1",
- ivy"org.scalacheck::scalacheck:1.13.4"
+ ivy"org.scalatest::scalatest:3.0.8",
+ ivy"org.scalacheck::scalacheck:1.14.0"
)
def testFrameworks = Seq("org.scalatest.tools.Framework")
}