Skip to content

Commit fab9c3d

Browse files
committed
chore: Disable "extras" due to pandas incompatibility
1 parent 9b6761d commit fab9c3d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ jobs:
2828
pip install --upgrade pip
2929
pip install .
3030
pip install ".[dev]"
31-
pip install ".[extras]"
3231
pip install ".[api]"
32+
# Note: extras temporarily disabled due to aix360 pandas<2.0.0 conflict
3333
- name: Lint
3434
run: |
3535
pylint --ignore-imports=yes $(find src/trustyai -type f -name "*.py")
3636
- name: Test with pytest
3737
run: |
3838
pytest -v -s tests/general
39-
pytest -v -s tests/extras
39+
# pytest -v -s tests/extras # Temporarily disabled due to aix360 pandas<2.0.0 conflict
4040
pytest -v -s tests/initialization --forked
4141
- name: Style
4242
run: |

0 commit comments

Comments
 (0)