File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/jupyter Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -55,12 +55,16 @@ import kotlin.reflect.KClass
55
55
import kotlin.reflect.KProperty
56
56
import kotlin.reflect.full.isSubtypeOf
57
57
58
+ /* * Users will get an error if their Kotlin Jupyter kernel is older than this version. */
59
+ private const val MIN_KERNEL_VERSION = " 0.11.0.198"
60
+
58
61
internal val newDataSchemas = mutableListOf<KClass <* >>()
59
62
60
63
internal class Integration (private val notebook : Notebook , private val options : MutableMap <String , String ?>) :
61
64
JupyterIntegration () {
62
65
63
66
override fun Builder.onLoaded () {
67
+ setMinimalKernelVersion(MIN_KERNEL_VERSION )
64
68
val codeGen = ReplCodeGenerator .create()
65
69
val config = JupyterConfiguration ()
66
70
You can’t perform that action at this time.
0 commit comments