From d933af86388e019c73e6f2431901eb729f46a35a Mon Sep 17 00:00:00 2001 From: DRovara Date: Wed, 9 Oct 2024 16:49:50 +0200 Subject: [PATCH] fix: :recycle: Remove "skip-latest" from workflow as it seems to be no longer supported --- .github/workflows/ci.yml | 2 -- pyproject.toml | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5b3c91c..930a060 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,8 +42,6 @@ jobs: id-token: write # Explicitly allows the `id-token: write` permission for this job if: fromJSON(needs.change-detection.outputs.run-python-tests) uses: cda-tum/mqt-workflows/.github/workflows/reusable-python-ci.yml@v1.4.4 - with: - skip-testing-latest-python: true code-ql: name: 📝 CodeQL diff --git a/pyproject.toml b/pyproject.toml index b25cb64..bdfa7d1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -278,7 +278,7 @@ build = "cp3*" skip = "*-musllinux_*" archs = "auto64" test-command = "python -c \"from mqt import debugger\"" -test-skip = "cp38-macosx_arm64" +test-skip = ["cp38-macosx_arm64", "cp313*"] build-frontend = "build[uv]" [tool.cibuildwheel.linux]