File tree Expand file tree Collapse file tree 12 files changed +9
-24
lines changed Expand file tree Collapse file tree 12 files changed +9
-24
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 7
7
shell : bash
8
8
run : |
9
9
git clone https://github.com/trustyai-explainability/trustyai-explainability.git
10
- mvn clean install -DskipTests -f trustyai-explainability/pom.xml -Pquickly -fae -e -nsu
10
+ mvn clean install -DskipTests -f trustyai-explainability/pom.xml -Pshaded -fae -e -nsu
11
+ mv trustyai-explainability/explainability-arrow/target/explainability-arrow-*-SNAPSHOT.jar src/trustyai/dep/org/trustyai/
Original file line number Diff line number Diff line change 32
32
maven-version : 3.8.1
33
33
- name : Build explainability-core
34
34
uses : ./.github/actions/build-core
35
- - name : Build arrow-converter
36
- uses : ./.github/actions/build-arrow
37
35
- name : Install TrustyAI Python package
38
36
run : |
39
37
pip install -r requirements-dev.txt
Original file line number Diff line number Diff line change 30
30
maven-version : 3.8.1
31
31
- name : Build explainability-core
32
32
uses : ./.github/actions/build-core
33
- - name : Build arrow-converter
34
- uses : ./.github/actions/build-arrow
35
33
- name : Install TrustyAI Python package
36
34
run : |
37
35
pip install -r requirements-dev.txt
Original file line number Diff line number Diff line change 12
12
fetch-depth : 0
13
13
- name : Build explainability-core
14
14
uses : ./.github/actions/build-core
15
- - name : Build explainability-arrow
16
- uses : ./.github/actions/build-arrow
17
15
- run : python3 -m pip install --upgrade build && python3 -m build
18
16
- name : Publish package
19
17
uses : pypa/gh-action-pypi-publish@release/v1
Original file line number Diff line number Diff line change 23
23
python-version : ${{ matrix.python-version }}
24
24
- name : Build explainability-core
25
25
uses : ./.github/actions/build-core
26
- - name : Build explainability-arrow
27
- uses : ./.github/actions/build-arrow
28
26
- name : Install TrustyAI Python package
29
27
run : |
30
28
pip install -r requirements-dev.txt
Original file line number Diff line number Diff line change 1
- ![ version] ( https://img.shields.io/badge/version-0.2.4 -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.3.0 -green ) [ ![ Tests] ( https://github.com/trustyai-python/module/actions/workflows/workflow.yml/badge.svg )] ( https://github.com/trustyai-python/examples/actions/workflows/workflow.yml )
2
2
3
3
# python-trustyai
4
4
Original file line number Diff line number Diff line change 1
1
[project ]
2
2
name = " trustyai"
3
- version = " 0.2.5 "
3
+ version = " 0.3.0 "
4
4
description = " Python bindings to the TrustyAI explainability library."
5
5
authors = [{ name = " Rui Vieira" , email = " rui@redhat.com" }]
6
6
license = { file = " LICENSE" }
Original file line number Diff line number Diff line change 27
27
git clone --branch main https://github.com/${EXP_CORE} /${EXP_CORE} .git " ${EXP_CORE_DEST} "
28
28
echo " Copying JARs from ${EXP_CORE_DEST} into ${ROOT_DIR} /dep/org/trustyai/"
29
29
mvn install package -DskipTests -f " ${EXP_CORE_DEST} " /pom.xml -Pshaded
30
- mv " ${EXP_CORE_DEST} " /explainability-arrow/target/explainability-arrow-* -SNAPSHOT .jar " ${ROOT_DIR} " /src/trustyai/dep/org/trustyai/
30
+ mv " ${EXP_CORE_DEST} " /explainability-arrow/target/explainability-arrow-* .jar " ${ROOT_DIR} " /src/trustyai/dep/org/trustyai/
31
31
else
32
32
echo " Directory ${EXP_CORE_DEST} already exists. Please delete it or move it."
33
33
exit 1
Original file line number Diff line number Diff line change 6
6
7
7
# set initialized env variable to 0
8
8
import warnings
9
+ from .version import __version__
9
10
10
11
TRUSTYAI_IS_INITIALIZED = False
11
12
You can’t perform that action at this time.
0 commit comments