File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
jupyter/src/test/kotlin/org/jetbrains/kotlinx/spark/api/jupyter Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -3,14 +3,14 @@ object Versions {
3
3
const val groupID = " org.jetbrains.kotlinx.spark"
4
4
const val kotlin = " 1.8.0"
5
5
const val jvmTarget = " 8"
6
- const val jupyterJvmTarget = " 11 "
6
+ const val jupyterJvmTarget = " 8 "
7
7
8
8
inline val spark get() = System .getProperty(" spark" ) as String
9
9
inline val scala get() = System .getProperty(" scala" ) as String
10
10
inline val sparkMinor get() = spark.substringBeforeLast(' .' )
11
11
inline val scalaCompat get() = scala.substringBeforeLast(' .' )
12
12
13
- const val jupyter = " 0.11 .0-210 "
13
+ const val jupyter = " 0.12 .0-32-1 "
14
14
const val kotest = " 5.5.4"
15
15
const val kotestTestContainers = " 1.3.3"
16
16
const val dokka = " 1.7.10"
Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ class JupyterTests : ShouldSpec({
59
59
librariesScanner.addLibrariesFromClassLoader(
60
60
classLoader = currentClassLoader,
61
61
host = this,
62
+ notebook = notebook,
62
63
integrationTypeNameRules = listOf(
63
64
PatternNameAcceptanceRule (
64
65
acceptsFlag = false,
@@ -341,6 +342,7 @@ class JupyterStreamingTests : ShouldSpec({
341
342
librariesScanner.addLibrariesFromClassLoader(
342
343
classLoader = currentClassLoader,
343
344
host = this,
345
+ notebook = notebook,
344
346
integrationTypeNameRules = listOf(
345
347
PatternNameAcceptanceRule (
346
348
acceptsFlag = false,
You can’t perform that action at this time.
0 commit comments