Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update to latest descriptors #439

Merged
merged 1 commit into from
Nov 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ Other options are resolving library descriptor from a local file or from remote
- [datetime](https://github.com/Kotlin/kotlinx-datetime) - Kotlin date/time library
- [deeplearning4j](https://github.com/eclipse/deeplearning4j) - Deep learning library for the JVM
- [deeplearning4j-cuda](https://github.com/eclipse/deeplearning4j) - Deep learning library for the JVM (CUDA support)
- default - Default imports: dataframe and Lets-Plot libraries
- default - Default imports: dataframe and Kandy libraries
- [exposed](https://github.com/JetBrains/Exposed) - Kotlin SQL framework
- [fuel](https://github.com/kittinunf/fuel) - HTTP networking library
- [gradle-enterprise-api-kotlin](https://github.com/gabrielfeo/gradle-enterprise-api-kotlin) - A library to use the Gradle Enterprise API in Kotlin scripts or projects
Expand All @@ -388,7 +388,6 @@ Other options are resolving library descriptor from a local file or from remote
- [kravis](https://github.com/holgerbrandl/kravis) - Kotlin grammar for data visualization
- [kt-math](https://github.com/gciatto/kt-math) - Kotlin multi-platform port of java.math.*
- [lets-plot](https://github.com/JetBrains/lets-plot-kotlin) - Kotlin API for Lets-Plot: multiplatform plotting library based on Grammar of Graphics
- [lets-plot-dataframe](https://github.com/JetBrains/lets-plot-kotlin) - A bridge between Lets-Plot and dataframe libraries
- [lets-plot-gt](https://github.com/JetBrains/lets-plot-kotlin) - Lets-Plot visualisation for GeoTools toolkit
- [lib-ext](https://github.com/Kotlin/kotlin-jupyter) - Extended functionality for Jupyter kernel
- [londogard-nlp-toolkit](https://github.com/londogard/londogard-nlp-toolkit) - A Natural Language Processing (NLP) toolkit for Kotlin on the JVM
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ class ReplWithStandardResolverTests : AbstractSingleReplTest() {
res.shouldBeInstanceOf<List<LibraryResolutionRequest>>()
res.shouldHaveSize(3)

val expectedLibs = listOf("default", "dataframe", "lets-plot-dataframe")
val expectedLibs = listOf("default", "dataframe", "kandy")
for (i in res.indices) {
res[i].reference.name shouldBe expectedLibs[i]
res[i].definition.originalDescriptorText.shouldNotBeBlank()
Expand Down