Issue Description
https://packaging.python.org/en/latest/specifications/dependency-specifiers/ allows a URI_reference:
|
urlspec = '@' wsp* <URI_reference> |
Where URI_reference is defined as:
|
URI_reference = <URI | relative_ref> |
Thus, it is valid to write my-amazing-package @ ../../this-is-a-path.
However, it doesn't appear to be defined what base URL is used to resolve the relative URL, even in the "simple" case of a dependency specifier in a pyproject.toml file.
Code of Conduct
Issue Description
https://packaging.python.org/en/latest/specifications/dependency-specifiers/ allows a
URI_reference:packaging.python.org/source/specifications/dependency-specifiers.rst
Line 71 in 59dabe8
Where
URI_referenceis defined as:packaging.python.org/source/specifications/dependency-specifiers.rst
Line 387 in 59dabe8
Thus, it is valid to write
my-amazing-package @ ../../this-is-a-path.However, it doesn't appear to be defined what base URL is used to resolve the relative URL, even in the "simple" case of a dependency specifier in a
pyproject.tomlfile.Code of Conduct