-
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
feat: fallback to gather metadata via pep517 if reading as Poetry project raises RuntimeError #5834
Conversation
4cb31c9
to
0422772
Compare
3554f0b
to
43d140e
Compare
|
I agree we should do this at least for future versions.
Had the same thought and then forgot to mention it. It probably can since we are only expecting an exception from |
Probably it can, but it looks a bit ugly: try:
package_poetry = Factory().create_poetry(pyproject.file.path.parent)
except RuntimeError:
pass
else:
builder: Builder
if package.develop and not package_poetry.package.build_script:
from poetry.masonry.builders.editable import EditableBuilder
... Is it worth it? 🤔 |
package_poetry = None
if pyproject.is_poetry_project():
with contextlib.suppress(RuntimeError):
package_poetry = Factory().create_poetry(pyproject.file.path.parent)
if package_poetry is not None:
etc ? |
43d140e
to
e24de71
Compare
Much nicer 👍 I decided for: if pyproject.is_poetry_project():
try:
package_poetry = Factory().create_poetry(pyproject.file.path.parent)
except RuntimeError:
package_poetry = None
if package_poetry is not None:
... |
e24de71
to
f348738
Compare
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
At the moment Poetry gives up gather metadata from a Poetry project during installation/locking if parsing the
pyproject.toml
raises aRuntimeError
. This currently happens if one tries to add a Poetry project whosepyproject.toml
contains group-dependencies introduced in Poetry 1.2, but the Poetry in use is <1.2. Similar scenarios are possible in the future whenever something changed in the appearance of thepyproject.toml
.With this PR we catch the
RuntimeError
and fallback to pep517 to gather the metadata, making the process more robust.Once accepted I would suggest to backport it to Poetry 1.1 and cut a new release immediately, hoping to make the transition period between 1.1 and 1.2 more smooth, by avoiding things like #5761.