From 852f1d3402b0a1e7e868173be930a1b206d7ec85 Mon Sep 17 00:00:00 2001 From: MatthewMiddlehurst Date: Tue, 25 Jun 2024 12:26:48 +0100 Subject: [PATCH] only install binder dependencies --- .github/workflows/periodic_tests.yml | 2 +- .github/workflows/pr_examples.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/periodic_tests.yml b/.github/workflows/periodic_tests.yml index bb5723b2b6..90cd91e65c 100644 --- a/.github/workflows/periodic_tests.yml +++ b/.github/workflows/periodic_tests.yml @@ -70,7 +70,7 @@ jobs: with: timeout_minutes: 30 max_attempts: 3 - command: python -m pip install .[all_extras,binder,dev] + command: python -m pip install .[binder,dev] - name: Run example notebooks run: build_tools/run_examples.sh false diff --git a/.github/workflows/pr_examples.yml b/.github/workflows/pr_examples.yml index 4cfb1f37d0..d262a45656 100644 --- a/.github/workflows/pr_examples.yml +++ b/.github/workflows/pr_examples.yml @@ -42,7 +42,7 @@ jobs: with: timeout_minutes: 30 max_attempts: 3 - command: python -m pip install .[all_extras,binder,dev] + command: python -m pip install .[binder,dev] - name: Run example notebooks run: build_tools/run_examples.sh ${{ github.event_name != 'pull_request' || !contains(github.event.pull_request.labels.*.name, 'full examples run') }}