feat: fallback to gather metadata via pep517 if reading as Poetry project raises RuntimeError#5834
Merged
finswimmer merged 2 commits intopython-poetry:masterfrom Aug 22, 2022
Merged
Conversation
4cb31c9 to
0422772
Compare
3554f0b to
43d140e
Compare
radoering
requested changes
Aug 21, 2022
2 tasks
Contributor
|
|
Member
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 |
Contributor
Member
Author
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? 🤔 |
Contributor
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
Member
Author
|
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:
... |
radoering
reviewed
Aug 22, 2022
e24de71 to
f348738
Compare
radoering
approved these changes
Aug 22, 2022
This was referenced Aug 22, 2022
|
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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
At the moment Poetry gives up gather metadata from a Poetry project during installation/locking if parsing the
pyproject.tomlraises aRuntimeError. This currently happens if one tries to add a Poetry project whosepyproject.tomlcontains 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
RuntimeErrorand 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.