With setuptools-scm 10.x, the version file is not being generated when builds are done in-source (editable).
https://github.com/qualcomm/ai-hub-models
Repro:
git clone git@github.com:qualcomm/ai-hub-models.git
cd ai-hub-models
pip install -e .
FILE=qai_hub_models/_version.py
if [ -f "$FILE" ]; then
echo "File $FILE exists."
else
echo "File $FILE does not exist."
fi
With setuptools-scm 10.x, the version file is not being generated when builds are done in-source (editable).
https://github.com/qualcomm/ai-hub-models
Repro: