This is an automated email from the ASF dual-hosted git repository. ephraimanierobi pushed a commit to branch v2-6-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit aa4cda365a897de39dfbd0ffb4461b085425303c Author: Jarek Potiuk <[email protected]> AuthorDate: Fri Jul 7 00:27:06 2023 +0200 Limit click until we fix mypy issues (#32413) Click 8.1.4 breaks our mypy checks. The upper limit can be lifted when the #32412 issue is resolved (cherry picked from commit bb97bf21fd320c593b77246590d4f8d2b0369c24) --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index cc8ef0a14f..fd84e86bc2 100644 --- a/setup.py +++ b/setup.py @@ -265,7 +265,9 @@ deprecated_api = [ doc = [ "astroid>=2.12.3", "checksumdir", - "click>=8.0", + # Click 8.1.4 breaks our mypy checks. The upper limit can be lifted when the + # https://github.com/apache/airflow/issues/32412 issue is resolved + "click>=8.0,<8.1.4", # Docutils 0.17.0 converts generated <div class="section"> into <section> and breaks our doc formatting # By adding a lot of whitespace separation. This limit can be lifted when we update our doc to handle # <section> tags for sections
