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 recently added #66 automatically upgrade poetry-core versions to the minimum used by Habushu. Unfortunately, it also breaks when the project's existing pyproject.toml file does not use a major.minor.patch versioning pattern.
For instance, the following pyproject.toml snippet will break the process:
WORKAROUND
In the meantime, you can work around this defect by update the version to be in the form of major.minor.patch. For instance, migrate requires = ["poetry-core>=1.6"] to instead be requires = ["poetry-core>=1.6.0"]
The recently added #66 automatically upgrade
poetry-core
versions to the minimum used by Habushu. Unfortunately, it also breaks when the project's existingpyproject.toml
file does not use amajor.minor.patch
versioning pattern.For instance, the following
pyproject.toml
snippet will break the process:We should resolve this so any valid
poetry-core
version will be seamlessly upgraded.The text was updated successfully, but these errors were encountered: