Closed
Description
Within the build workflow the cibuildwheel
jobs are not correctly inferring the version number using setuptools_scm
from the Git tags due to
actions/checkout#1471 which means that the tags are not being checked out by the actions/checkout
step. See for example this run.
We need to update the checkout Action configuration to explicitly request tags:
- uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true