You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The poetry-find-project-root function only searches for [tool.poetry], I believe the adjustment should be in this function, but I don't have enough context of the project to know what it would be.
Maybe turn the poetry check command?
The text was updated successfully, but these errors were encountered:
I encountered the same problem. I am currently adding an empty [tool.poetry] node to pyproject.toml to temporarily solve the problem. Waiting for maintainers to adjust the regular expression
In the latest version of poetry, the
[tool.poetry]
table is no longer mandatory.Now it also reads the
[proejct]
table.So, these two configurations are valid:
poetry.el/poetry.el
Lines 893 to 901 in 1dff0d4
The
poetry-find-project-root
function only searches for[tool.poetry]
, I believe the adjustment should be in this function, but I don't have enough context of the project to know what it would be.Maybe turn the
poetry check
command?The text was updated successfully, but these errors were encountered: