From 57978a341c2e497d939c70c1b8eacfc5cc12be27 Mon Sep 17 00:00:00 2001 From: JacobTh98 Date: Wed, 25 Oct 2023 14:35:07 +0200 Subject: [PATCH] Set python versions: ["3.10", "3.11", "3.12"]. --- .github/workflows/run_nb.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run_nb.yml b/.github/workflows/run_nb.yml index a02f684..2cf4b95 100644 --- a/.github/workflows/run_nb.yml +++ b/.github/workflows/run_nb.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.12"] + python-version: ["3.10", "3.11", "3.12"] steps: - name: Checkout code @@ -42,7 +42,7 @@ jobs: - name: Find notebooks id: find-notebooks run: | - find . -name "*.ipynb" > notebooks.txt + find . -name "*.ipynb" -not -name "acoustic_impulse_response_measurement.ipynb" > notebooks.txt cat notebooks.txt shell: bash