From 3d01211db41ad5e427c2a682948ba89135a49792 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Louf?= Date: Mon, 9 Dec 2024 21:14:52 +0100 Subject: [PATCH] Do not bump Cargo version before releasing to PyPi When we bump the version of Cargo.toml in CI we introduced an uncommited change, and the state of the branch is then used to determine the PyPi release version number. --- .github/workflows/release_pypi.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/release_pypi.yaml b/.github/workflows/release_pypi.yaml index 7c13053..667b3cb 100644 --- a/.github/workflows/release_pypi.yaml +++ b/.github/workflows/release_pypi.yaml @@ -21,10 +21,6 @@ jobs: with: python-version: '3.10' - - name: Bump Cargo version - run: | - python ./.github/scripts/cargo_version_bumper.py --target Cargo.toml "${{ github.ref_name }}" - - name: Set up QEMU if: runner.os == 'Linux' uses: docker/setup-qemu-action@v3