From 16b01a58787313bcdf7dee1dd648310994d92add Mon Sep 17 00:00:00 2001 From: Roland Walker Date: Sat, 8 Aug 2026 09:25:00 -0400 Subject: [PATCH] downgrade click to v8.3.3 since v8.4.2 broke the pager on Windows. --- changelog.md | 5 +++++ pyproject.toml | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index 108b4498..7a489ddc 100644 --- a/changelog.md +++ b/changelog.md @@ -7,6 +7,11 @@ Features * Add a `/config` command to inspect configuration values from the REPL. +Bugfixes +--------- +* Downgrade `click` to v8.3.3, since v8.4.2 broke the pager on Windows. + + 2.11.0 (2026/08/07) ============== diff --git a/pyproject.toml b/pyproject.toml index c278ba2d..20d70925 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,7 +25,9 @@ classifiers = [ ] dependencies = [ - "click ~= 8.4.2", + # click 8.4.2 breaks the pager on Windows; check the next + # version for https://github.com/pallets/click/pull/3739 + "click ~= 8.3.3", "clickdc ~= 0.1.1", "cryptography ~= 50.0.0", "Pygments ~= 2.20.0",