From 231151f80655d79e80ff05e4ac67a1de87e6d4c8 Mon Sep 17 00:00:00 2001 From: Gabriel Dugny Date: Fri, 30 Jan 2026 11:36:59 +0100 Subject: [PATCH] fix: reload broken with latest click Recommended to pin click, see https://github.com/squidfunk/mkdocs-material/issues/8478, alternative of requiring users to always pass the `--livereload` flag would be a breaking change and would require some docs update. Fixing it here should fix it transitively in techdocs-container - let me know if you prefer to only pin the dependency there. --- requirements.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/requirements.txt b/requirements.txt index 143e4dc..20e9aa0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -22,3 +22,5 @@ mkdocs-redirects==1.2.2 # around incompatible/conflicting underlying dependencies. Each dependency # should include a comment explaining why it is needed, and under what # circumstances it can be removed in the future. +# Pinned click to avoid issues with autoreload https://github.com/squidfunk/mkdocs-material/issues/8478 +click<=8.2.2