From a2ed2653c6a8530f69b87cfc33742168cdf857f4 Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Sun, 19 Feb 2023 18:42:38 +0000 Subject: [PATCH] ci: examples workflow now avoids matplotlib v3.7.0 which breaks import of local style files. --- .github/workflows/examples.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/examples.yml b/.github/workflows/examples.yml index e802f0b0..473e77d0 100644 --- a/.github/workflows/examples.yml +++ b/.github/workflows/examples.yml @@ -36,6 +36,7 @@ jobs: pip install . pip install pytest pip install nbmake + pip install -U matplotlib!=3.7.0 # Exclude version 3.7.0 of matplotlib as this breaks local imports of style files. - name: Run tests run: pytest -vv --nbmake examples/*.ipynb