Corey Oordt
Corey Oordt
I can't say that I've ever heard of a workflow that increments the version _on commit._ With the current workload I don't see this becoming a priority unless others are...
@PetrDlouhy What permissions do you need. I don't think I have any/many, but I can look.
An invite was sent your way from PyPI.
I'll take a look today. Thanks for bringing it up.
Could you paste in the output of what happens when you do a bump but add `-vv` into the command to turn on verbose output? That would help me identify...
So here is the story: The logic for [changing the config file](https://github.com/callowayproject/bump-my-version/blob/4d727133f201284604bc15c50635ab1ebbf212e7/bumpversion/files.py#L352) intentionally does not change mismatching contents to avoid accidents. I believe this mismatch should only be temporary or...
@CyberTailor Prompt-toolkit appears to be the underlying issue: [from questionary's pyproject.toml](https://github.com/tmbo/questionary/blob/c894eeffbeb2f1448a108163998ba95b72a8e32a/pyproject.toml#L36), the questionary issue mentioned by vinaysb, and [this prompt-toolkit issue](https://github.com/prompt-toolkit/python-prompt-toolkit/issues/1809)
This is a great point, and I'm kicking myself for not recognizing it before.
#215 has my current answer to this. The `project.version` can be dynamic, depending on your needs and build tool.
Pre-commit hooks are run during the bump process unless you have: ```toml [tool.bumpversion] commit_args = "--no-verify" ``` I usually suggest this to avoid getting into strange states because of an...