Skip to content

Commit 5269750

Browse files
committed
simplified jupyter dependencies
1 parent 9e48295 commit 5269750

File tree

2 files changed

+1
-12
lines changed

2 files changed

+1
-12
lines changed

dataframe-jupyter/build.gradle.kts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,10 @@ repositories {
1818
}
1919

2020
dependencies {
21-
api(projects.core)
22-
api(projects.dataframeJson)
21+
api(projects.dataframe)
2322

2423
testImplementation(libs.junit)
2524
testImplementation(libs.serialization.json)
26-
testImplementation(projects.dataframeArrow)
27-
testImplementation(projects.dataframeCsv)
28-
testImplementation(projects.dataframeExcel)
29-
testImplementation(projects.dataframeJdbc)
3025
// experimental
3126
testImplementation(projects.dataframeOpenapiGenerator)
3227
testImplementation(projects.dataframeOpenapi)

dataframe-jupyter/src/main/kotlin/org/jetbrains/kotlinx/dataframe/jupyter/Integration.kt

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -170,12 +170,6 @@ internal class Integration(private val notebook: Notebook, private val options:
170170
"org.jetbrains.kotlinx:dataframe-openapi-generator:$version",
171171
)
172172
}
173-
dependencies(
174-
"org.jetbrains.kotlinx:dataframe-csv:$version",
175-
"org.jetbrains.kotlinx:dataframe-excel:$version",
176-
"org.jetbrains.kotlinx:dataframe-jdbc:$version",
177-
"org.jetbrains.kotlinx:dataframe-arrow:$version",
178-
)
179173
}
180174

181175
try {

0 commit comments

Comments
 (0)