Skip to content

Commit 499b85b

Browse files
committed
remove AIX360 deps temporarily
1 parent 3937484 commit 499b85b

File tree

3 files changed

+4
-11
lines changed

3 files changed

+4
-11
lines changed

.github/workflows/workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ jobs:
2929
pip install .
3030
pip install ".[dev]"
3131
pip install ".[api]"
32-
# Note: extras temporarily disabled due to aix360 pandas<2.0.0 conflict
32+
# Extras extra removed; keep AIX360-only deps out of the default install
3333
- name: Lint
3434
run: |
3535
pylint --ignore-imports=yes $(find src/trustyai -type f -name "*.py" | grep -v "/extras/")
3636
- name: Test with pytest
3737
run: |
3838
pytest -v -s tests/general
39-
# pytest -v -s tests/extras # Temporarily disabled due to aix360 pandas<2.0.0 conflict
39+
# pytest -v -s tests/extras # Extras-only deps not installed in CI
4040
pytest -v -s tests/initialization --forked
4141
- name: Style
4242
run: |

CHANGELOG.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ All notable changes to this project will be documented in this file.
2222
This is the first version of Python TrustyAI to include support for external explainability algorithms.
2323

2424
In this release we've included AIX360's `TSICE`, `TSLime` and `TSSaliency` time-series explainers.
25-
To use these explainers TrustyAI's extra dependencies must be installed with `pip install trustyai[extras]`.
25+
These explainers rely on the AIX360 dependencies when used.
2626

2727
- Refactor TrustyAI fairness metrics namespaces ([#156](https://github.com/trustyai-explainability/trustyai-explainability-python/pull/156))
2828
- Upgrade pyarrow dependency ([#159](https://github.com/trustyai-explainability/trustyai-explainability-python/pull/159))
@@ -327,4 +327,3 @@ To use these explainers TrustyAI's extra dependencies must be installed with `pi
327327
## [0.0.2] - 2021-08-09
328328

329329
## [0.0.1] - 2021-07-21
330-

README.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,6 @@ Install from PyPi with
1414
pip install trustyai
1515
```
1616

17-
To install additional experimental features, also use
18-
19-
```shell
20-
pip install trustyai[extras]
21-
```
22-
2317
### Local
2418

2519
The minimum dependencies can be installed (from the root directory) with
@@ -63,4 +57,4 @@ There are several working examples available in the [examples](https://github.co
6357

6458
## Contributing
6559

66-
Please see the [CONTRIBUTING.md](CONTRIBUTING.md) file for instructions on how to contribute to this project.
60+
Please see the [CONTRIBUTING.md](CONTRIBUTING.md) file for instructions on how to contribute to this project.

0 commit comments

Comments
 (0)