We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7fefea commit a322491Copy full SHA for a322491
modules/tasty-lib/src/main/scala/scala/build/tastylib/TastyVersions.scala
@@ -16,7 +16,7 @@ object TastyVersions {
16
scalaVersion: String,
17
scalaCliVersion: String
18
): Either[String, Boolean] =
19
- if (!scalaVersion.startsWith("3.")) Right(false)
+ if (!scalaVersion.startsWith("3.") && scalaVersion != "3" ) Right(false)
20
else
21
scalaVersion.split('.')(1).toInt match {
22
case scalaMinor if scalaMinor > LatestSupportedScala.MinorVersion =>
0 commit comments