version from project.toml not used in GitHub build action #3812
-
Hi, My project.toml has a fixed version number. I don't use a setup.cfg or setup.py because everything I need is in the toml file. When I run the build command "python3 -m build" locally, in my venv, it creates a wheel and a tar for this version (2.6.3 in this case) Does anyone have an idea what causes this problem and how to fix it? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
GitHub Actions says that this failed run was against tag |
Beta Was this translation helpful? Give feedback.
GitHub Actions says that this failed run was against tag
v2.6.3
, which is this tree, but thepyproject.toml
in that commit still saysversion = '2.6.2'
. Apparently, you created the tag before updating the version.