-
I can't find it anywhere, yet uv uses it without issue to produce builds. Not in my venv, not there as a uv tool/pipx package or a system package. I want to write a custom hook to embed git version. I feel like an idiot... This is how it's described in my pyproject.toml:
I'd want to use the same hatchling package that's used by uv, wherever it's stored/cached. Or maybe if I specify it a dep (part of group dependency "dev" maybe) then uv build would pick that up as well? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 10 replies
-
Does this help? https://hatch.pypa.io/latest/how-to/plugins/testing-builds/ |
Beta Was this translation helpful? Give feedback.
I found it:
~/.cache/uv/builds-v0/.tmpkMKgQV/lib/python3.10/site-packages/hatchling
I corrected my pyproject:
Situation now:
This is now more of a uv issue I suppose, and I think I will be okay with option 1. Or m…