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 current implementation fetches the dependency name and version from the pyproject.toml file using tomli. Currently, this would support only three formats i.e, foo = '^n.n.n', foo = '>=n.n.n', foo = 'n.n.n'.
The goal of this issue is to change the implementation to something like how poetry-export-plugin and python-poetry/poetry-plugin-export#3 works. It needs to extract the dependency name and version from the poetry.lock file which makes it independent of the pyproject.toml file and also supports all the formats, since poetry converts them to dependency name and version format in the lock file.
The text was updated successfully, but these errors were encountered:
The current implementation fetches the dependency name and version from the
pyproject.toml
file using tomli. Currently, this would support only three formats i.e,foo = '^n.n.n'
,foo = '>=n.n.n'
,foo = 'n.n.n'
.The goal of this issue is to change the implementation to something like how poetry-export-plugin and python-poetry/poetry-plugin-export#3 works. It needs to extract the dependency name and version from the
poetry.lock
file which makes it independent of thepyproject.toml
file and also supports all the formats, since poetry converts them to dependency name and version format in the lock file.The text was updated successfully, but these errors were encountered: