Skip to content

Commit

Permalink
Limit click until we fix mypy issues (#32413)
Browse files Browse the repository at this point in the history
Click 8.1.4 breaks our mypy checks. The upper limit can be lifted when
the #32412 issue is resolved

(cherry picked from commit bb97bf2)
  • Loading branch information
potiuk authored and ephraimbuddy committed Jul 7, 2023
1 parent b329587 commit aa4cda3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,9 @@ def write_version(filename: str = str(AIRFLOW_SOURCES_ROOT / "airflow" / "git_ve
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
Expand Down

0 comments on commit aa4cda3

Please sign in to comment.