Python -> uv tips out of date?
Hi,
I am currently trying out gitlab to see if it can replace my gitea instance. I then stumbled upon the CI/CD files provided here and while reading through the python section, I noticed that the uv tip section appears to be out of date.
The docs state this:
Currently, UV supports the following underlying build systems: hatchling (this is the default setting when creating a new project with UV), so you may use the same build configuration as Hatch.
This is no longer the case, at least when I initialize a project like this: uv init --lib it uses this build-system:
[build-system]
requires = ["uv_build>=0.9.11,<0.10.0"] #versions change depending on which version of uv is used
build-backend = "uv_build"
I am not sure if this changes anything in the background, just wanted to let you know that I noticed this.