Skip to content

Commit 533f084

Browse files
committed
Ensure all dataframe artifacts have java 8 compatibility
also update kotlin dl to 0.4.0 because 0.3.0 needs java 11
1 parent 0d58870 commit 533f084

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,11 @@ allprojects {
4242
jvmTarget = "1.8"
4343
}
4444
}
45+
46+
tasks.withType<JavaCompile> {
47+
sourceCompatibility = JavaVersion.VERSION_1_8.toString()
48+
targetCompatibility = JavaVersion.VERSION_1_8.toString()
49+
}
4550
}
4651

4752
group = "org.jetbrains.kotlinx"

examples/idea-examples/titanic/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ application.mainClass.set("org.jetbrains.kotlinx.dataframe.examples.titanic.ml.T
1212

1313
dependencies {
1414
implementation(project(":core"))
15-
implementation("org.jetbrains.kotlinx:kotlin-deeplearning-api:0.3.0")
16-
implementation("org.jetbrains.kotlinx:kotlin-deeplearning-dataset:0.3.0")
15+
implementation("org.jetbrains.kotlinx:kotlin-deeplearning-api:0.4.0")
16+
implementation("org.jetbrains.kotlinx:kotlin-deeplearning-dataset:0.4.0")
1717
}
1818

1919
// Make IDE aware of the generated code:

0 commit comments

Comments
 (0)