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 acyclic to 0.3.15 #313

Merged
merged 1 commit into from
Sep 25, 2024
Merged
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
4 changes: 2 additions & 2 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ val scalaVersions = Seq(
) ++ communityBuildDottyVersion

object Deps {
val acyclic = ivy"com.lihaoyi:::acyclic:0.3.13"
val acyclic = ivy"com.lihaoyi:::acyclic:0.3.15"
val jna = ivy"net.java.dev.jna:jna:5.15.0"
val geny = ivy"com.lihaoyi::geny::1.1.1"
val sourcecode = ivy"com.lihaoyi::sourcecode::0.4.2"
Expand Down Expand Up @@ -165,7 +165,7 @@ object os extends Module {
object jvm extends Cross[OsJvmModule](scalaVersions)
trait OsJvmModule extends OsModule with MiMaChecks {
object test extends ScalaTests with OsLibTestModule {
override def ivyDeps = T{super.ivyDeps() ++ Agg(Deps.expecty)}
override def ivyDeps = T { super.ivyDeps() ++ Agg(Deps.expecty) }

// we check the textual output of system commands and expect it in english
def forkEnv = super.forkEnv() ++ Map(
Expand Down