From 4327e29f4cd5c81309f0b8573d31b0ffec764010 Mon Sep 17 00:00:00 2001 From: Jinzhe Zeng Date: Sat, 30 Sep 2023 01:04:04 -0400 Subject: [PATCH] fix source distribution version in build-wheel.yml #2324 sets `fetch-depth: 0` for wheels but not source distribution, so that the wheel versions are correct, but the source distribution version is wrong. Signed-off-by: Jinzhe Zeng --- .github/workflows/build_wheel.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build_wheel.yml b/.github/workflows/build_wheel.yml index 98360e41e4..df4a109841 100644 --- a/.github/workflows/build_wheel.yml +++ b/.github/workflows/build_wheel.yml @@ -76,6 +76,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + with: + fetch-depth: 0 - uses: actions/setup-python@v4 name: Install Python with: