Skip to content

Commit ce1c03d

Browse files
committed
Fix accidental dev dependency on Kotlin stdlib in test-kit
1 parent 4d5fb39 commit ce1c03d

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

docs/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -215,12 +215,12 @@ Alternatively, run this Conda command to update the package from the developers
215215
`conda update -c jetbrains-dev kotlin-jupyter-kernel`
216216

217217
To change to a specific Kotlin Kernel version, add the `={VERSION}` parameter to the `kotlin-jupyter-kernel` command. In this command,
218-
replace the `{VERSION}` parameter with the desired PyPi version of the Kotlin Jupyter Kernel (for example, `0.15.0.556`).
218+
replace the `{VERSION}` parameter with the desired PyPi version of the Kotlin Jupyter Kernel (for example, `0.15.0.584`).
219219

220220
You can specify the version in both commands the one from the stable package and the one from the developers channel package. For example, for the
221221
stable package:
222222

223-
`conda install -c jetbrains kotlin-jupyter-kernel={0.15.0.556}`
223+
`conda install -c jetbrains kotlin-jupyter-kernel={0.15.0.584}`
224224

225225
### Update with Pip
226226

@@ -233,12 +233,12 @@ Alternatively, run this Conda command to update the package from the developers
233233
`pip install -i https://test.pypi.org/simple/ kotlin-jupyter-kernel --upgrade`
234234

235235
To change to a specific Kotlin Kernel version, add the `={VERSION}` parameter to the `kotlin-jupyter-kernel` command. In this command,
236-
replace the `{VERSION}` parameter with the desired PyPi version of the Kotlin Jupyter Kernel (for example, `0.15.0.556`).
236+
replace the `{VERSION}` parameter with the desired PyPi version of the Kotlin Jupyter Kernel (for example, `0.15.0.584`).
237237

238238
You can specify the version in both commands the one from the stable package and the one from the developers channel package. For example, for the
239239
stable package:
240240

241-
`pip install kotlin-jupyter-kernel=={0.15.0.556} --ignore-installed`
241+
`pip install kotlin-jupyter-kernel=={0.15.0.584} --ignore-installed`
242242

243243
### Update in Datalore
244244

@@ -256,7 +256,7 @@ To update the Kotlin Kernel for notebooks in Datalore:
256256
- kotlin-jupyter-kernel=={VERSION}
257257
```
258258
259-
2. Replace the `{VERSION}` parameter for the latest PyPi version of the Kotlin Jupyter Kernel (for example, `0.15.0.556`).
259+
2. Replace the `{VERSION}` parameter for the latest PyPi version of the Kotlin Jupyter Kernel (for example, `0.15.0.584`).
260260

261261
3. Stop and restart the machine in Datalore.
262262

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ versionsPlugin = "0.52.0"
2727
slf4j = "2.0.17"
2828
logback = "1.5.18"
2929
http4k = "6.15.1.0"
30-
jupyterApi = "0.15.0-556"
30+
jupyterApi = "0.15.0-584"
3131
jetbrainsAnnotations = "26.0.2"
3232
trove4j = "1.0.20200330"
3333

jupyter-lib/test-kit/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ dependencies {
1212
exclude(group = LOGBACK_GROUP)
1313
}
1414
api(libs.jupyterNotebooksParser)
15+
implementation(libs.kotlin.dev.stdlib)
1516
implementation(libs.kotlin.dev.scriptingJvm)
1617
implementation(libs.serialization.json)
1718
implementation(libs.test.kotlintest.assertions)

0 commit comments

Comments
 (0)