Set click lower bound to 8.0.0 (#2791)

Closes #2774
This commit is contained in:
Shivansh-007 2022-01-21 22:24:57 +05:30 committed by GitHub
parent 4ea75cd495
commit e0c572833a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -39,6 +39,7 @@
- All upper version bounds on dependencies have been removed (#2718)
- `typing-extensions` is no longer a required dependency in Python 3.10+ (#2772)
- Set `click` lower bound to `8.0.0` (#2791)
### Preview style

View File

@ -97,7 +97,7 @@ def find_python_files(base: Path) -> List[Path]:
python_requires=">=3.6.2",
zip_safe=False,
install_requires=[
"click>=7.1.2",
"click>=8.0.0",
"platformdirs>=2",
"tomli>=1.1.0",
"typed-ast>=1.4.2; python_version < '3.8' and implementation_name == 'cpython'",