-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sdist: find packages incorrectly including non-package directories during setup.py generation #2283
Labels
kind/bug
Something isn't working as expected
Comments
|
abn
pushed a commit
to abn/poetry-core
that referenced
this issue
Apr 8, 2020
abn
pushed a commit
to python-poetry/poetry-core
that referenced
this issue
Apr 9, 2020
abn
added a commit
to abn/poetry-core
that referenced
this issue
Apr 9, 2020
Adding tests causes ci issues with the current preview release of poetry. For the interim, removing this until core release is stabilised. Related-to: python-poetry/poetry#2283
abn
added a commit
to python-poetry/poetry-core
that referenced
this issue
Apr 12, 2020
Adding tests causes ci issues with the current preview release of poetry. For the interim, removing this until core release is stabilised. Related-to: python-poetry/poetry#2283
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The issue occurs when attempting
poetry install
on https://github.com/python-poetry/core/tree/1172536cac35ca4e2519b9bd516ae8f1cf23994a. This only occurs when usingpoetry
at1.1.0a1
or currentdevel
branch.1.0.5
works without issue.The broken path is triggered due to the inclusion of tests as a package source.
Log and generated
setup.py
file is available at https://gist.github.com/abn/669c95565b957f6267cda71c2078278e.Issue seems to be related to how
setup.py
is populated withpackages =
It treats non-package directories as packages, hence causingpip
editable install to fail.Note that this might be a low priority issue if we decide to drop
setup.py
generation in the future.The text was updated successfully, but these errors were encountered: