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
We were pinning the version of Click we depend on to 7.1. Pinning to a specific version of the package is not ideal, as we would have to keep updating the pinned version to avoid dependency conflicts with newer Python packages that depend on later versions of Click. We depend on some Click features that appeared in 7.1, so we do need at least this version. Later versions of the package should also work for us, so we don't need to specify the requirement so precisely. This commit relaxes the requirement to Click 7.1 or greater and less than 8. This should minimise the potential for dependency conflicts with other packages. Fixes#245
0 commit comments