Skip to content

Commit

Permalink
Update acyclic to 0.3.13 (#304)
Browse files Browse the repository at this point in the history
Pull request: #304
  • Loading branch information
scala-steward authored Sep 13, 2024
1 parent d7a1797 commit 0ba9dfb
Showing 1 changed file with 18 additions and 6 deletions.
24 changes: 18 additions & 6 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.12"
val acyclic = ivy"com.lihaoyi:::acyclic:0.3.13"
val jna = ivy"net.java.dev.jna:jna:5.14.0"
val geny = ivy"com.lihaoyi::geny::1.1.1"
val sourcecode = ivy"com.lihaoyi::sourcecode::0.4.2"
Expand Down Expand Up @@ -53,7 +53,19 @@ trait SafeDeps extends ScalaModule {

trait MiMaChecks extends Mima {
def mimaPreviousVersions =
Seq("0.9.0", "0.9.1", "0.9.2", "0.9.3", "0.10.0", "0.10.1", "0.10.2", "0.10.3", "0.10.4", "0.10.5", "0.10.6")
Seq(
"0.9.0",
"0.9.1",
"0.9.2",
"0.9.3",
"0.10.0",
"0.10.1",
"0.10.2",
"0.10.3",
"0.10.4",
"0.10.5",
"0.10.6"
)
override def mimaBinaryIssueFilters: T[Seq[ProblemFilter]] = Seq(
ProblemFilter.exclude[ReversedMissingMethodProblem]("os.PathConvertible.isCustomFs"),
// this is fine, because ProcessLike is sealed (and its subclasses should be final)
Expand Down Expand Up @@ -95,8 +107,8 @@ trait OsLibModule

trait OsModule extends OsLibModule { outer =>
def ivyDeps = Agg(Deps.geny)
override def compileIvyDeps = T{
val scalaReflectOpt = Option.when(!ZincWorkerUtil.isDottyOrScala3(scalaVersion())) (
override def compileIvyDeps = T {
val scalaReflectOpt = Option.when(!ZincWorkerUtil.isDottyOrScala3(scalaVersion()))(
Deps.scalaReflect(scalaVersion())
)
super.compileIvyDeps() ++ scalaReflectOpt
Expand All @@ -120,8 +132,8 @@ trait OsModule extends OsLibModule { outer =>

def scalaDocOptions = super.scalaDocOptions() ++ conditionalScalaDocOptions()

def generatedSources = T{
val conversions = for(i <- Range.inclusive(2, 22)) yield {
def generatedSources = T {
val conversions = for (i <- Range.inclusive(2, 22)) yield {
val ts = Range.inclusive(1, i).map(n => s"T$n").mkString(", ")
val fs = Range.inclusive(1, i).map(n => s"f$n: T$n => R").mkString(", ")
val vs = Range.inclusive(1, i).map(n => s"f$n(t._$n)").mkString(", ")
Expand Down

0 comments on commit 0ba9dfb

Please sign in to comment.