Different git links when installing from tar.gz vs whl #5024
Labels
area/build-system
Related to PEP 517 packaging (see poetry-core)
status/triage
This issue needs to be triaged
Issue
This builds off of #4380. I wanted to add a dependency that was a git link rooted in a subfolder. To do this, as discussed in #4567, I used
poetry-core
from master since I needed python-poetry/poetry-core#192.Relevant lines in
pyproject.toml
:This works for installing the package from source and from
tar.gz
file but not fromwhl
and the only difference seems to be a branch tag added at the end of the git link while installing fromwhl
. I've attached the relevant lines belowThe tar.gz and whl files were created via
poetry build
As you can see while installing from
tar.gz
there is no branch tag (@master
)whereas while installing from
whl
there isSo my question is whether it is possible to not have the
@master
tag while installing from whl? (assuming this is the cause of the error)The text was updated successfully, but these errors were encountered: