diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index c6bd3652..e9237c15 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -10,7 +10,7 @@ on: jobs: python-packaging: name: 🐍 Packaging - uses: cda-tum/mqt-workflows/.github/workflows/reusable-python-packaging.yml@v1.0.1 + uses: cda-tum/mqt-workflows/.github/workflows/reusable-python-packaging.yml@v1.1.2 deploy: if: github.event_name == 'release' && github.event.action == 'published' diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ed8e5a34..b7369e56 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,13 +14,13 @@ concurrency: jobs: change-detection: name: 🔍 Change - uses: cda-tum/mqt-workflows/.github/workflows/reusable-change-detection.yml@v1.0.1 + uses: cda-tum/mqt-workflows/.github/workflows/reusable-change-detection.yml@v1.1.2 cpp-tests: name: 🇨‌ Test needs: change-detection if: fromJSON(needs.change-detection.outputs.run-cpp-tests) - uses: cda-tum/mqt-workflows/.github/workflows/reusable-cpp-ci.yml@v1.0.1 + uses: cda-tum/mqt-workflows/.github/workflows/reusable-cpp-ci.yml@v1.1.2 with: cmake-args: "" cmake-args-ubuntu: -G Ninja @@ -31,19 +31,19 @@ jobs: name: 🇨‌ Lint needs: change-detection if: fromJSON(needs.change-detection.outputs.run-cpp-linter) - uses: cda-tum/mqt-workflows/.github/workflows/reusable-cpp-linter.yml@v1.0.1 + uses: cda-tum/mqt-workflows/.github/workflows/reusable-cpp-linter.yml@v1.1.2 python-tests: name: 🐍 Test needs: change-detection if: fromJSON(needs.change-detection.outputs.run-python-tests) - uses: cda-tum/mqt-workflows/.github/workflows/reusable-python-ci.yml@v1.0.1 + uses: cda-tum/mqt-workflows/.github/workflows/reusable-python-ci.yml@v1.1.2 code-ql: name: 📝 CodeQL needs: change-detection if: fromJSON(needs.change-detection.outputs.run-code-ql) - uses: cda-tum/mqt-workflows/.github/workflows/reusable-code-ql.yml@v1.0.1 + uses: cda-tum/mqt-workflows/.github/workflows/reusable-code-ql.yml@v1.1.2 required-checks-pass: # This job does nothing and is only used for branch protection name: 🚦 Check diff --git a/pyproject.toml b/pyproject.toml index af4078df..42281bd3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -253,7 +253,7 @@ skip = "*-musllinux_*" archs = "auto64" test-command = "python -c \"from mqt import ddsim\"" test-skip = "cp38-macosx_arm64" -build-frontend = "build" +build-frontend = "build[uv]" [tool.cibuildwheel.linux] environment = { DEPLOY = "ON" } @@ -262,6 +262,6 @@ environment = { DEPLOY = "ON" } environment = { MACOSX_DEPLOYMENT_TARGET = "10.15" } [tool.cibuildwheel.windows] -before-build = "pip install delvewheel" -repair-wheel-command = "delvewheel repair -v -w {dest_dir} {wheel}" +before-build = "pip install delvewheel>=1.4.0" +repair-wheel-command = "delvewheel repair -v -w {dest_dir} {wheel} --namespace-pkg mqt" environment = { CMAKE_ARGS = "-T ClangCL" }