From e33de12747d68307f95387a27de9a0b4b34fe66a Mon Sep 17 00:00:00 2001 From: wakonig_k Date: Mon, 19 May 2025 13:27:48 +0200 Subject: [PATCH] ci: fix missing build dependencies --- .github/workflows/semantic_release.yml | 4 ---- pyproject.toml | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/semantic_release.yml b/.github/workflows/semantic_release.yml index 65effb84..32d1b576 100644 --- a/.github/workflows/semantic_release.yml +++ b/.github/workflows/semantic_release.yml @@ -81,10 +81,6 @@ jobs: printf '%s\n' "Verified upstream branch has not changed, continuing with release..." - - name: Setup | Install Dependencies - run: | - pip install build wheel - - name: Action | Semantic Version Release id: release # Adjust tag with desired version if applicable. diff --git a/pyproject.toml b/pyproject.toml index ca364d5a..5db4466b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -71,7 +71,7 @@ include_trailing_comma = true known_first_party = ["bec_widgets"] [tool.semantic_release] -build_command = "python -m build" +build_command = "pip install build wheel && python -m build" version_toml = ["pyproject.toml:project.version"] [tool.semantic_release.commit_author]