Skip to content

Commit

Permalink
Use pip install, not conda install for examples deps
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Mar 11, 2022
1 parent 4f8c9f8 commit dd1ad18
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,9 @@ jobs:
curl -L -O https://tiker.net/ci-support-v0
. ./ci-support-v0
build_py_project_in_conda_env
conda install matplotlib ipykernel nbconvert
# ipython_genutils for https://github.com/jupyter/nbconvert/issues/1725
with_echo pip install matplotlib ipykernel nbconvert ipython_genutils
install_ispc
Expand Down
5 changes: 4 additions & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,10 @@ Pytest POCL Examples:
. ./ci-support-v0
build_py_project_in_venv
pip install matplotlib ipykernel nbconvert
# ipython_genutils for https://github.com/jupyter/nbconvert/issues/1725
pip install matplotlib ipykernel nbconvert ipython_genutils
install_ispc
. ./.ci/examples-funcs.sh
Expand Down

0 comments on commit dd1ad18

Please sign in to comment.