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
pep440: support post/local for semver allows (#158)
This change ensures that post and local releases are taken into
consideration when checking if semver version instance allows
post and local build releases.
The following conditions now hold `poetry.core.semver.Version.allows`.
- `3.0.0` allows `3.0.0+local.1`, `3.0.0-1`
- `3.0.0+local.1` disallows `3.0.0+local.2`, allows `3.0.0-1`
- `3.0.0-1` disallows ``3.0.0`, `3.0.0+local.1`, allows `3.0.0-1+local.1`
0 commit comments