File tree Expand file tree Collapse file tree 3 files changed +4
-11
lines changed
Expand file tree Collapse file tree 3 files changed +4
-11
lines changed Original file line number Diff line number Diff 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 : |
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ All notable changes to this project will be documented in this file.
2222This is the first version of Python TrustyAI to include support for external explainability algorithms.
2323
2424In 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-
Original file line number Diff line number Diff line change @@ -14,12 +14,6 @@ Install from PyPi with
1414pip 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
2519The 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.
You can’t perform that action at this time.
0 commit comments