forked from orbit-oss/flask
Allow using Click 7 with a DeprecationWarning
As long as popular libraries (e.g. Celery) require click 7, depending on Click 8 in Flask makes it hard to test the latest version (and its other dependencies) in existing applications.
This commit is contained in:
parent
1a8549debb
commit
26a6cc0f94
5 changed files with 26 additions and 3 deletions
2
setup.py
2
setup.py
|
|
@ -7,7 +7,7 @@ setup(
|
|||
"Werkzeug>=2.0.0rc4",
|
||||
"Jinja2>=3.0.0rc1",
|
||||
"itsdangerous>=2.0.0rc2",
|
||||
"click>=8.0.0rc1",
|
||||
"click>=7.1.2",
|
||||
],
|
||||
extras_require={
|
||||
"async": ["asgiref>=3.2"],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue