renovate/lib/modules/versioning/poetry
Nils Philippsen 1991b7fcb0
fix(poetry): Fix existing range unions (#19785)
Signed-off-by: Nils Philippsen <nils@redhat.com>
2023-01-11 17:21:56 +01:00
..
index.spec.ts fix(poetry): Fix existing range unions (#19785) 2023-01-11 17:21:56 +01:00
index.ts fix(poetry): support pin for short versions (#19543) 2022-12-23 10:10:04 +01:00
patterns.ts refactor: lib/modules (#14488) 2022-03-04 09:04:02 +01:00
readme.md refactor: lib/modules (#14488) 2022-03-04 09:04:02 +01:00
transform.ts fix(poetry): Fix existing range unions (#19785) 2023-01-11 17:21:56 +01:00

Poetry versioning is a little like a mix of PEP440 and SemVer.

Currently Renovate's implementation is based off npm versioning. This works by parsing versions using the same patterns and similar normalization rules as Poetry, passing them to the npm versioning implementation, and then reversing the normalizations. This allows Renovate to meaningfully compare the SemVer-style versions allowed in pyproject.toml to the PEP440 representations used on PyPI. These are equivalent for major.minor.patch releases, but different for pre-, post-, and dev releases.