Skip to content

Commit

Permalink
Scala 3.6 maximum inlines exceeded with -source:3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
toddburnside committed Oct 23, 2024
1 parent 1e91fd9 commit 3f50284
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
ThisBuild / tlBaseVersion := "0.106"
ThisBuild / tlBaseVersion := "0.107"
ThisBuild / tlCiReleaseBranches := Seq("master")
ThisBuild / githubWorkflowEnv += "MUNIT_FLAKY_OK" -> "true"

ThisBuild / tlCiReleaseBranches += "topic/scala3"

Global / concurrentRestrictions += Tags.limit(Tags.Compile, 1)

ThisBuild / crossScalaVersions := Seq("3.5.2")
ThisBuild / scalacOptions += "-language:implicitConversions" // TODO
ThisBuild / crossScalaVersions := Seq("3.6.0")
ThisBuild / scalacOptions ++= Seq(
"-language:implicitConversions", // TODO
"-source:3.7",
"-Xmax-inlines:64"
)

lazy val catsVersion = "2.12.0"
lazy val kindProjectorVersion = "0.13.2"
Expand Down

0 comments on commit 3f50284

Please sign in to comment.