Skip to content

Commit

Permalink
Temporary enable compact core build by default
Browse files Browse the repository at this point in the history
  • Loading branch information
koperagen committed Jan 17, 2025
1 parent 6035209 commit 0c596be
Show file tree
Hide file tree
Showing 21 changed files with 4,832 additions and 4,833 deletions.
3 changes: 2 additions & 1 deletion core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ plugins {
alias(kodex)
alias(simpleGit)
alias(buildconfig)
alias(binary.compatibility.validator)
// alias(binary.compatibility.validator)

// generates keywords using the :generator module
alias(keywordGenerator)
Expand Down Expand Up @@ -65,6 +65,7 @@ dependencies {

api(libs.kotlin.reflect)
implementation(libs.kotlin.stdlib)
kotlinCompilerPluginClasspath(project(":plugins:public-api-modifier"))
kotlinCompilerPluginClasspathSamples(project(":plugins:expressions-converter"))
implementation(libs.kotlin.stdlib.jdk8)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ class RenderingTests : JupyterReplTestCase() {
val df2 = dataFrameOf(Pair("header", listOf("A", "B", "C")))
val col4 by columnOf(df2, df2, df2)
var df = dataFrameOf(col1, col2, col3, col4)
df.group(col1, col2).into("group")
df.group("col1", "col2").into("group")
""".trimIndent(),
)
val expectedOutput =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ internal class ArrowKtTest {
assert(warnings.filterIsInstance<ConvertingMismatch.TypeConversionFail.ConversionFailIgnored>().size == 1)
assert(warnings.filterIsInstance<ConvertingMismatch.SavedAsString>().size == 1)

DataFrame.readArrowFeather(data)["bigMixedColumn"] shouldBe dataFrame[bigMixedColumn].map { it.toString() }
DataFrame.readArrowFeather(data)["bigMixedColumn"] shouldBe dataFrame["bigMixedColumn"].map { it.toString() }
}

@Test
Expand Down
2 changes: 1 addition & 1 deletion dataframe-jdbc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
alias(kotlin.jvm)
alias(publisher)
alias(kover)
alias(ktlint)
// alias(ktlint)
alias(jupyter.api)
alias(binary.compatibility.validator)
}
Expand Down
Loading

0 comments on commit 0c596be

Please sign in to comment.