Skip to content

Commit e52a517

Browse files
authored
Merge pull request #200 from Kotlin/jupyter-java-8
Set Jupyter version to Java 8
2 parents 7efefeb + 5054b5b commit e52a517

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

buildSrc/src/main/kotlin/Versions.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ object Versions {
33
const val groupID = "org.jetbrains.kotlinx.spark"
44
const val kotlin = "1.8.0"
55
const val jvmTarget = "8"
6-
const val jupyterJvmTarget = "11"
6+
const val jupyterJvmTarget = "8"
77

88
inline val spark get() = System.getProperty("spark") as String
99
inline val scala get() = System.getProperty("scala") as String
1010
inline val sparkMinor get() = spark.substringBeforeLast('.')
1111
inline val scalaCompat get() = scala.substringBeforeLast('.')
1212

13-
const val jupyter = "0.11.0-210"
13+
const val jupyter = "0.12.0-32-1"
1414
const val kotest = "5.5.4"
1515
const val kotestTestContainers = "1.3.3"
1616
const val dokka = "1.7.10"

jupyter/src/test/kotlin/org/jetbrains/kotlinx/spark/api/jupyter/JupyterTests.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ class JupyterTests : ShouldSpec({
5959
librariesScanner.addLibrariesFromClassLoader(
6060
classLoader = currentClassLoader,
6161
host = this,
62+
notebook = notebook,
6263
integrationTypeNameRules = listOf(
6364
PatternNameAcceptanceRule(
6465
acceptsFlag = false,
@@ -341,6 +342,7 @@ class JupyterStreamingTests : ShouldSpec({
341342
librariesScanner.addLibrariesFromClassLoader(
342343
classLoader = currentClassLoader,
343344
host = this,
345+
notebook = notebook,
344346
integrationTypeNameRules = listOf(
345347
PatternNameAcceptanceRule(
346348
acceptsFlag = false,

0 commit comments

Comments
 (0)