From a2b18d8181fa0d27956e2fd3669d5c50cd121846 Mon Sep 17 00:00:00 2001 From: Jarek Potiuk Date: Mon, 23 Dec 2024 15:09:20 +0100 Subject: [PATCH] Update min version of click also in airflow to 8.1.8 (#45177) Click introduced breaking change for breeze opts behaviour fixed in #45156 however it did not force breeze image to upgrade click to newer version and it could have caused out-dated images to use older click version even if the image has been rebuilt. This PR also updates click version in the breeze image. --- hatch_build.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/hatch_build.py b/hatch_build.py index e624baa8d2ff8..5b67d3f7c2e58 100644 --- a/hatch_build.py +++ b/hatch_build.py @@ -150,9 +150,7 @@ "doc": [ "astroid>=2.12.3,<3.0", "checksumdir>=1.2.0", - # click 8.1.4 and 8.1.5 generate mypy errors due to typing issue in the upstream package: - # https://github.com/pallets/click/issues/2558 - "click>=8.0,!=8.1.4,!=8.1.5", + "click>=8.1.8", # Docutils 0.17.0 converts generated
into
and breaks our doc formatting # By adding a lot of whitespace separation. This limit can be lifted when we update our doc to handle #
tags for sections