From af474d5d4252b3a5a6ad6eb9f32e4d0119c19095 Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Thu, 9 Jan 2025 10:00:33 +0100 Subject: [PATCH] [CI] Add system install for examples workflow --- .github/workflows/examples.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/examples.yml b/.github/workflows/examples.yml index 8f3bc784..51322b2c 100644 --- a/.github/workflows/examples.yml +++ b/.github/workflows/examples.yml @@ -34,10 +34,10 @@ jobs: run: | sudo apt-get update sudo apt-get install dvipng texlive-latex-extra texlive-fonts-recommended cm-super - uv pip install wheel - uv pip install . - uv pip install pytest nbmake - uv pip install -U matplotlib!=3.7.0 # Exclude version 3.7.0 of matplotlib as this breaks local imports of style files. + uv pip install wheel --system + uv pip install . --system + uv pip install pytest nbmake --system + uv pip install -U matplotlib!=3.7.0 --system # Exclude version 3.7.0 of matplotlib as this breaks local imports of style files. - name: Run tests run: pytest -vv --nbmake examples/*.ipynb