Thanks for this amazing package!
I would like to always to version information regardless if the commit is tagged, there have been committed changes since the last tag, there is no tag, or even if there are uncommitted changes.
In particular, I would (something) like to use what is proposed in setuptools_scm as follows:
- no distance and clean:
- distance and clean:
{next_version}.dev{distance}+{scm letter}{revision hash}
- no distance and not clean:
- distance and not clean:
{next_version}.dev{distance}+{scm letter}{revision hash}.dYYYYMMDD
The next version is calculated by adding 1 to the last numeric component of the tag.
How can I do that?
Thanks for this amazing package!
I would like to always to version information regardless if the commit is tagged, there have been committed changes since the last tag, there is no tag, or even if there are uncommitted changes.
In particular, I would (something) like to use what is proposed in setuptools_scm as follows:
How can I do that?