Skip to content

Commit 78b177c

Browse files
committed
Update TrustyAI to 1.17
Prepare for release
1 parent 116d471 commit 78b177c

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-0.0.6-green) ![TrustyAI](https://img.shields.io/badge/TrustyAI-1.12-green) [![Tests](https://github.com/trustyai-python/module/actions/workflows/workflow.yml/badge.svg)](https://github.com/trustyai-python/examples/actions/workflows/workflow.yml)
1+
![version](https://img.shields.io/badge/version-0.0.7-green) ![TrustyAI](https://img.shields.io/badge/TrustyAI-1.17-green) [![Tests](https://github.com/trustyai-python/module/actions/workflows/workflow.yml/badge.svg)](https://github.com/trustyai-python/examples/actions/workflows/workflow.yml)
22

33
# python-trustyai
44

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
with open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
88
long_description = f.read()
99

10-
TRUSTY_VERSION = "1.12.0.Final"
10+
TRUSTY_VERSION = "1.17.0.Final"
1111

1212

1313
class PostInstall(install):
@@ -27,7 +27,7 @@ def run(self):
2727

2828
setup(
2929
name="trustyai",
30-
version="0.0.6",
30+
version="0.0.7",
3131
description="Python bindings to the TrustyAI explainability library",
3232
long_description=long_description,
3333
long_description_content_type="text/markdown",

trustyai/__init__.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@
88
import jpype.imports
99
from jpype import _jcustomizer, _jclass
1010

11-
TRUSTY_VERSION = "1.12.0.Final"
11+
TRUSTY_VERSION = "1.17.0.Final"
1212
DEFAULT_DEP_PATH = os.path.join(site.getsitepackages()[0], "trustyai", "dep")
1313

1414
CORE_DEPS = [
1515
f"{DEFAULT_DEP_PATH}/org/kie/kogito/explainability-core/{TRUSTY_VERSION}/*",
1616
f"{DEFAULT_DEP_PATH}/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.jar",
1717
f"{DEFAULT_DEP_PATH}/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar",
18-
f"{DEFAULT_DEP_PATH}/org/optaplanner/optaplanner-core/8.12.0.Final/"
19-
f"optaplanner-core-8.12.0.Final.jar",
18+
f"{DEFAULT_DEP_PATH}/org/optaplanner/optaplanner-core/8.17.0.Final/"
19+
f"optaplanner-core-8.17.0.Final.jar",
2020
f"{DEFAULT_DEP_PATH}/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.jar",
21-
f"{DEFAULT_DEP_PATH}/org/kie/kie-api/7.59.0.Final/kie-api-7.59.0.Final.jar",
22-
f"{DEFAULT_DEP_PATH}/io/micrometer/micrometer-core/1.7.4/micrometer-core-1.7.4.jar",
21+
f"{DEFAULT_DEP_PATH}/org/kie/kie-api/8.17.0.Beta/kie-api-8.17.0.Beta.jar",
22+
f"{DEFAULT_DEP_PATH}/io/micrometer/micrometer-core/1.8.2/micrometer-core-1.8.2.jar",
2323
]
2424

2525

0 commit comments

Comments
 (0)