-
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
Regression: poetry install fails with a build script due to not respecting [build-system] requires #7909
Comments
not only "linked" to #6154 but surely a straight duplicate |
I was unsure if it was a duplicate or not, because I've definitely had poetry building my project after that issue was posted, and its only in the last two months that the build stage we've had has failed. Given the other issue doesn't include the full stack I also wasn't sure if the issue was from the same part of the code. If you like, I can put the screenshots and pyproject.toml over onto that issue, I just didn't want to do so if it might have been a different problem |
you've described the same circumstances, the same actions, and the same symptoms - I think assuming duplicate is sensible. By all means add extra information to that issue if you think you have something new to add (though please prefer text to screenshots, so much less annoying to interact with and search) |
Closing as duplicate of #6154 |
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. |
python:3.9-slim
-vvv
option) and have included the output below.Issue
This issue may be linked to:
build-system.requires
#6154This issue might actually be
setuptools
rather than poetry as well. I'm not sure how the two libraries interact with each other.We noticed that our latest builds are failing on our poetry install. Our project has cython code, and so part of our
build.py
that's referenced by the[tool.poetry.build]
is to use numpy and cython (which are part of the[build-system].requires
section) to compile the cython code into binaries.Now, a
poetry build
works as expected, because it installs the build dependencies. But apoetry install
on longer worksTo summarise the above images:
[tool.poetry.dependencies]
and[build-system].requires
poetry build
runs and compiles files successfullypoetry install
fails on:Getting requirements to build editable did not run successfully.
as poetry/setuptools tries to run ourbuilder.py
without dependencies, which fails.Now the big caveat here, is that I don't know how
poetry
andsetuptools
interact, so this might have absolutely nothing to do with poetry and everything to do with setuptools. In which case, please feel free to close out this issue and I'll try to raise it somewhere else.Has the way to include a build script that has dependencies changed in the latest poetry versions?
The text was updated successfully, but these errors were encountered: