Skip to content

Commit 3f26841

Browse files
committed
WIP: Try to fix CIs
1 parent 377cca4 commit 3f26841

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

tools/azure_dependencies.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,8 @@ else
2929
exit 1
3030
fi
3131
python -m pip install $EXTRA_ARGS .[test,hdf5] codecov
32+
33+
# Hopefully temporary workaround until it's merged and released
34+
if [[ "$(python -m pip list)" == *'pyvista '* ]]; then
35+
pip install --progress-bar off https://github.com/pyvista/larsoner/zipball/try
36+
fi

tools/github_actions_dependencies.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,8 @@ fi
5252
if [ "${DEPS}" != "minimal" ]; then
5353
pip install $STD_ARGS $EXTRA_ARGS -r requirements_testing_extra.txt
5454
fi
55+
56+
# Hopefully temporary workaround until it's merged and released
57+
if [[ "$(pip list)" == *'pyvista '* ]]; then
58+
pip install --progress-bar off https://github.com/pyvista/larsoner/zipball/try
59+
fi

0 commit comments

Comments
 (0)