From 273adc6a6a9cb859d701e552a251e2c7dc786953 Mon Sep 17 00:00:00 2001 From: Marton Havasi Date: Wed, 11 Dec 2024 17:05:19 +0000 Subject: [PATCH] add jupyter to dev deps --- .github/workflows/ci.yaml | 3 +-- environment.yml | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b152c96..2b51a7e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -34,9 +34,8 @@ jobs: - name: Run notebooks shell: bash -l {0} run: | - pip install jupyter for file in examples/*.ipynb; do - jupyter nbconvert --to html --execute --ExecutePreprocessor.timeout=300 "$file" + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=300 "$file" done - name: Docstring Lint diff --git a/environment.yml b/environment.yml index 6a0dd3e..e423a7c 100644 --- a/environment.yml +++ b/environment.yml @@ -23,3 +23,4 @@ dependencies: - scikit-learn - pydoclint - coverage + - jupyter