hatch-vcs icon indicating copy to clipboard operation
hatch-vcs copied to clipboard

Hatch plugin for versioning with your preferred VCS

Results 16 hatch-vcs issues
Sort by recently updated
recently updated
newest added

Thanks for this package! Just wanted to report that it was not very clear under what key section should https://github.com/ofek/hatch-vcs#version-source-options go. Tried to put them under, ``` [tool.hatch.version.raw-options] ``` with...

In `setuptools_scm` you can supply a callable `(ScmVersion) -> str` ![image](https://github.com/ofek/hatch-vcs/assets/141107424/b3b86f83-c446-4e08-815b-648de3cc13e7) https://setuptools-scm.readthedocs.io/en/latest/config/#configuration-parameters However, it appears that the only way to use a custom callable is by defining it in `setup.py`...

Does this plugin have any features for ignoring or excluding files whose names match a pattern? I ask because I'm a first-timer with packaging modules for PyPI. I was unpleasantly...

This may be more of a `setuptools-scm` question but I am not sure. I was trying to do an editable install (`pip install -e .`) inside a docker container that...

I am just moving to `hatch-vcs` and after installing and adding minimal config to my `pyproject.toml` I am getting the following warning when running `hatch build`: ``` WARNING pyproject.toml does...

This is a proof-of-concept. setuptools_scm provides both the version and file listing to setuptools, so this seems like an appropriate place to improve on hatchling's filtering of files based on...

Hey guys, I am trying to implement `hatch-vcs` but seem to be missing something to make it work. I get the following traceback when running the command `hatch version`: ```py...

Bumps [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) from 1.6.4 to 1.8.6. Release notes Sourced from pypa/gh-action-pypi-publish's releases. v1.8.6 What's Updated @​woodruffw dropped the references to a “private beta” from the project docs and runtime in...

dependencies

A project I recently got involved with are using hatch-vcs. However, we have an issue when we try to push to test.pypi.org as the commit has no tag with version...

When I'm trying to use: ```bash hatch version minor ``` for example, it raises `NotImplementedError`. I guess the plugin only reading the latest git tag and act by it when...