Floris Lambrechts
Floris Lambrechts
It would be great to include this in bitmath. Especially with Python 3.6's f-strings. ```python byte_counts = [1, 1025, 1026*1024, 1027*1024*1024, 1028*1024*1024*1024] for byte_count in byte_counts: size = bitmath.Byte(byte_count).best_prefix() print(f"{size.value:8.3f}...
Take a look at #59. I think this is the same issue. Please verify by doing `pip install --upgrade flake8` and try again.
This looks suspiciously like #127 but it's not the same bug -- only the same outcome. What should bumpversion do when `new_version == current_version`? Simply don't replace anything and act...
git-tag has a fairly new argument, '--edit'. Perhaps it's easier to add that rather than to strip out the existing -m argument.
You could use `[annotate_interactive]` as the special string?
On the other hand, this feature request can be solved by "allowing arbitrary arguments to git tag command", which sounds very similar to PR #47 ("allow arbitrary arguments to git...
If somebody were to implement this, it should be similar to #47.
So we would add it as documentation? Personal opinion: It think this would belong in a separate repository, but it's definitely nice to have this around.
Do you have some examples of the possibilities in a pipeline? E.g. automatically turn 'beta' into 'release' when a tag is present?