From 185a236aa78475a9f4069bd5e1fa379b86471608 Mon Sep 17 00:00:00 2001 From: Jonas Eschle Date: Mon, 15 Apr 2024 01:23:23 -0400 Subject: [PATCH] ci: remove platforms without graphviz --- .github/workflows/ci.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 110dc3c..f1fb5b1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -60,13 +60,13 @@ jobs: matrix: os: [ ubuntu-latest ] python-version: ["3.10", "3.12"] - include: - - os: macos-latest - python-version: "3.9" - - os: windows-latest - python-version: "3.9" - - os: macos-14 # Apple silicon runner - python-version: '3.12' +# include: # todo: activate when we can install graphviz on these platforms +# - os: macos-latest +# python-version: "3.9" +# - os: windows-latest +# python-version: "3.9" +# - os: macos-14 # Apple silicon runner +# python-version: '3.12' steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} @@ -79,6 +79,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip + sudo apt install graphviz -y pip install -e .[dev] - name: Download test data run: python data/download_test_files.py > /dev/null