Skip to content

Commit dd1ad18

Browse files
committed
Use pip install, not conda install for examples deps
1 parent 4f8c9f8 commit dd1ad18

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,9 @@ jobs:
9898
curl -L -O https://tiker.net/ci-support-v0
9999
. ./ci-support-v0
100100
build_py_project_in_conda_env
101-
conda install matplotlib ipykernel nbconvert
101+
102+
# ipython_genutils for https://github.com/jupyter/nbconvert/issues/1725
103+
with_echo pip install matplotlib ipykernel nbconvert ipython_genutils
102104
103105
install_ispc
104106

.gitlab-ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,10 @@ Pytest POCL Examples:
118118
. ./ci-support-v0
119119
120120
build_py_project_in_venv
121-
pip install matplotlib ipykernel nbconvert
121+
122+
# ipython_genutils for https://github.com/jupyter/nbconvert/issues/1725
123+
pip install matplotlib ipykernel nbconvert ipython_genutils
124+
122125
install_ispc
123126
124127
. ./.ci/examples-funcs.sh

0 commit comments

Comments
 (0)