Skip to content

Commit 622c3ba

Browse files
authored
RHOAIENG-12114: Remove JDK11 from GHAs (#215)
* Remove JDK11 from GHAs * Change Dataframe FQN to match TrustyAI core
1 parent 9f3d760 commit 622c3ba

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
matrix:
1010
python-version: [ 3.8, 3.9 ]
11-
java-version: [ 11, 17 ]
11+
java-version: [ 17 ]
1212
maven-version: [ '3.8.6' ]
1313
steps:
1414
- uses: actions/checkout@v2

src/trustyai/utils/data_conversions.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Data Converters between Python and Java"""
2+
23
# pylint: disable = import-error, line-too-long, trailing-whitespace, unused-import, cyclic-import
34
# pylint: disable = consider-using-f-string, invalid-name, wrong-import-order
45
import warnings
@@ -7,12 +8,13 @@
78

89
import trustyai.model
910
from org.kie.trustyai.explainability.model import (
10-
Dataframe,
1111
Feature,
1212
Output,
1313
PredictionInput,
1414
PredictionOutput,
1515
)
16+
from org.kie.trustyai.explainability.model.dataframe import Dataframe
17+
1618
from org.kie.trustyai.explainability.model.domain import (
1719
FeatureDomain,
1820
EmptyFeatureDomain,

0 commit comments

Comments
 (0)