Skip to content

Commit 91b0e7e

Browse files
author
Ashley Scillitoe
authored
Update notebook CI to match #817 (#818)
1 parent ad2df5f commit 91b0e7e

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/workflows/test_all_notebooks.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,11 @@ jobs:
4040
run: |
4141
python -m pip install --upgrade pip setuptools wheel
4242
python -m pip install --upgrade --upgrade-strategy eager -r requirements/dev.txt -r testing/requirements.txt
43-
python -m pip install --upgrade --upgrade-strategy eager -e .
43+
python -m pip install --upgrade --upgrade-strategy eager .[shap,tensorflow]
4444
if [ "$RUNNER_OS" != "Windows" ]; then
4545
# Windows support for ray is experimental (https://docs.ray.io/en/latest/installation.html#windows-support)
46-
python -m pip install --upgrade --upgrade-strategy eager -e .[ray]
46+
python -m pip install --upgrade --upgrade-strategy eager .[shap,tensorflow,ray]
4747
fi
48-
python -m pip install --upgrade --upgrade-strategy eager -e .[shap,tensorflow]
4948
python -m spacy download en_core_web_md
5049
python -m pip freeze
5150

.github/workflows/test_changed_notebooks.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,11 @@ jobs:
5656
run: |
5757
python -m pip install --upgrade pip setuptools wheel
5858
python -m pip install --upgrade --upgrade-strategy eager -r requirements/dev.txt -r testing/requirements.txt
59-
python -m pip install --upgrade --upgrade-strategy eager -e .
59+
python -m pip install --upgrade --upgrade-strategy eager .[shap,tensorflow]
6060
if [ "$RUNNER_OS" != "Windows" ]; then
6161
# Windows support for ray is experimental (https://docs.ray.io/en/latest/installation.html#windows-support)
62-
python -m pip install --upgrade --upgrade-strategy eager -e .[ray]
62+
python -m pip install --upgrade --upgrade-strategy eager .[shap,tensorflow,ray]
6363
fi
64-
python -m pip install --upgrade --upgrade-strategy eager -e .[shap,tensorflow]
6564
python -m spacy download en_core_web_md
6665
python -m pip freeze
6766

0 commit comments

Comments
 (0)