Hello, it appears that I'm unable to install a package from a github monorepo when the tag name contains the '@' symbol. Are there any ways around this using uv, or does uv share the installer from pip?
e.g. if the tag name is pkg@1.2.3 this should work in theory:
uv pip install git+https://github.com/my_org/my_repo@pkg@1.2.3#subdirectory=packages/pkg
I've also tried percent-encoding the tag name to no avail. I either get errors saying the repo was not found, or the tag was not found
see:
$ uv --version
uv 0.2.30 (Homebrew 2024-07-26)
Hello, it appears that I'm unable to install a package from a github monorepo when the tag name contains the '@' symbol. Are there any ways around this using uv, or does uv share the installer from pip?
e.g. if the tag name is
pkg@1.2.3this should work in theory:I've also tried percent-encoding the tag name to no avail. I either get errors saying the repo was not found, or the tag was not found
see:
@symbol pypa/pip#11428