From b9999b96609ee32d06592b1f9b7a7eb1f7ba896e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20Jourdan-Weil?= Date: Fri, 27 Feb 2026 17:56:27 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=8F=97=EF=B8=8F=20build:=20upgrade=20Scal?= =?UTF-8?q?a=20Parser=20Combinators=20to=202.x=20for=20Scala=202.13?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 87ef219f..671e5f42 100644 --- a/build.sbt +++ b/build.sbt @@ -113,8 +113,8 @@ val armShading = Seq( lazy val parserCombinatorsVer = Def.setting[String] { CrossVersion.partialVersion(scalaVersion.value) match { - case Some((2, n)) => "1.1.2" - case _ => "2.4.0" + case Some((2, n)) if n < 13 => "1.1.2" + case _ => "2.4.0" } }