(.venv) C:\Users\60145210\Documents\Projects\bintang\tests_dev>python -m setuptools_scm
0.2.14.dev0+gee471594d.d20260314

What that version string is telling you:
0.2.14: The last tag found in your history.

.dev0: You are 0 commits ahead of that tag (or you are currently on that tag).

+gee471594d: Your current Git commit ID.

.d20260314: Your local directory is "dirty" (you have uncommitted changes).


# to sync to github
git add .
git commit -m "msg here"
git push -u origin main

# create a tag
git tag v0.2.15
# trigger github action
git push origin v0.2.15