MousaZeidBaker / poetry-plugin-up

Poetry plugin that updates dependencies and bumps their versions in pyproject.toml file
MIT License
307 stars 10 forks source link

(🎁) Preserve tilde when bumping #20

Closed KotlinIsland closed 1 year ago

KotlinIsland commented 1 year ago

"~1.1" -> "~2.2.2" "~1" -> "^2.2.2"

The case of the dotless tilde (~1 == ^1 == >=1, <2) is not handled in this case and is changed as before to a caret.