Hatch config set not working with pyproject.toml
My pyproject.toml file is where all of my hatch configurations live.
My versioning is defined as follows [tool.hatch.version] path = 'src/saga3/init.py' validate-bump = false
I would like to dynamically set validate-bump to be false, but have it be true most of the time.
However, when I run hatch config set tool.hatch.version.validate-bump false ; hatch config update, nothing happens. Am I doing something wrong?
That command is for this https://hatch.pypa.io/latest/config/hatch/
Would you be opposed to me opening a pull request to add a --validate-bump flag to the version command?
Sure! Although, it would have to be the inverse because validation is the default.