From 5c8297eac4eea865f8cb1263666d1e67df8b1706 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Magalh=C3=A3es?= Date: Sun, 8 Sep 2024 13:09:45 +0100 Subject: [PATCH] fix: new python 3.12 build fix --- .github/workflows/main.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 59bc088..4d53505 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -29,6 +29,7 @@ jobs: - run: apt-get update && apt-get install -y libcups2-dev - run: python --version - run: python setup.py build + if: matrix.python-version != '3.12' && matrix.python-version != 'latest' - run: | pip install pytest pip install . @@ -64,7 +65,7 @@ jobs: pip install . pytest - run: python setup.py test - if: matrix.python-version != '3.12' + if: matrix.python-version != '3.12' && matrix.python-version != 'latest' build-macos: name: Build MacOS timeout-minutes: 10