click-contrib / click-didyoumean

Enable git-like did-you-mean feature in click :sparkles:
MIT License
98 stars 10 forks source link

black requirement too restrictive #15

Closed Paul-Durrant closed 6 months ago

Paul-Durrant commented 1 year ago

The requirement for black is

black = "^21.9b0"

Since black is now on 23., and will no doubt be on 24. next year, perhaps this requirement should be a >= instead of ^:

black = ">=21.9b0"

sisp commented 6 months ago

The compatible release specifier is even semantically incorrect for Black because Black uses CalVer while ^ is based on the semantics of SemVer.