This is an automated email from the ASF dual-hosted git repository. jdanek pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/qpid-dispatch.git
commit 9750c0776375181e423a08070efef0b1c8dbcfa9 Author: Jiri Daněk <[email protected]> AuthorDate: Sat Dec 28 16:51:35 2024 +0100 DISPATCH-2363: chore(gha): add the missing `build` python module, necessary for Proton to build the Python binding When the module is not present, binding is not built, and no errors are reported. --- .github/workflows/build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 09b15f99..9570c512 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -106,7 +106,7 @@ jobs: architecture: x64 - name: Install Python build dependencies - run: python -m pip install setuptools wheel tox cffi + run: python -m pip install build setuptools wheel tox cffi - name: Install Linux build dependencies if: ${{ runner.os == 'Linux' }} @@ -383,7 +383,7 @@ jobs: run: dnf install -y python39-devel python39-pip - name: Install Python build dependencies - run: python3 -m pip install setuptools wheel tox cffi + run: python3 -m pip install build setuptools wheel tox cffi # https://cristianadam.eu/20200113/speeding-up-c-plus-plus-github-actions-using-ccache/ - name: Prepare ccache timestamp --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
