From dd1ad1856467e9370b76854fbfbddc5230c29f34 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Andreas=20Kl=C3=B6ckner?= <inform@tiker.net>
Date: Thu, 10 Mar 2022 18:52:08 -0600
Subject: [PATCH] Use pip install, not conda install for examples deps

---
 .github/workflows/ci.yml | 4 +++-
 .gitlab-ci.yml           | 5 ++++-
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 5a9175dcc..6adf4a6d3 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -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
 
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 71a1468ca..55d392712 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -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
-- 
GitLab