From 7d654d2c359e1c8cfc4c535d338e925573c72c8a Mon Sep 17 00:00:00 2001 From: Raphael Boidol Date: Fri, 12 Jul 2024 18:36:29 +0200 Subject: [PATCH 1/2] build: add macOS and windows runners to test matrix --- .github/workflows/continous-integration.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/continous-integration.yml b/.github/workflows/continous-integration.yml index 90061b4..9ba4114 100644 --- a/.github/workflows/continous-integration.yml +++ b/.github/workflows/continous-integration.yml @@ -20,7 +20,13 @@ jobs: strategy: matrix: python-version: ["3.10", "3.11", "3.12"] - runs-on: ubuntu-latest + runner: [ubuntu-latest] + include: + - python-version: "3.12" + runner: macos-latest + - python-version: "3.12" + runner: windows-latest + runs-on: ${{ matrix.runner }} steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 From f60cd82114210ec379a9ccd702c5bd8fcf0f367a Mon Sep 17 00:00:00 2001 From: Raphael Boidol Date: Fri, 12 Jul 2024 18:41:00 +0200 Subject: [PATCH 2/2] Revert "chore: update pillow-avif-plugin to v1.4.4" This reverts commit 027de0bf9bf452b565b7aa95029525dc95094172. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 31b0c81..93d608d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,7 @@ dependencies = [ [project.optional-dependencies] avif = [ - "pillow-avif-plugin==1.4.4", + "pillow-avif-plugin==1.4.3", ] svg = [ "scour==0.38.2",