Skip to content

Commit 9d8c2b1

Browse files
authored
Disable running on Scala 2.11
Workaround for #21
1 parent 17b5d6f commit 9d8c2b1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

build.sbt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@ lazy val Tensors = project.dependsOn(OpenCLKernelBuilder, OpenCL, Trees)
1717
val defaultCrossTypeLevelScalaVersions = Seq(
1818
// "2.12.4-bin-typelevel-4" // Disabled due to https://github.com/typelevel/scala/issues/176
1919
)
20-
val crossLightbendScalaVersions = Seq("2.11.12", "2.12.4")
20+
21+
// Disable Scala 2.11 for now due to https://github.com/ThoughtWorksInc/Compute.scala/issues/21
22+
val crossLightbendScalaVersions = Seq("2.12.4")
23+
// val crossLightbendScalaVersions = Seq("2.11.12", "2.12.4")
2124

2225
crossScalaVersions in ThisBuild := {
2326
crossLightbendScalaVersions ++

0 commit comments

Comments
 (0)