From 1379abd314792129c5bd36382641207940a28384 Mon Sep 17 00:00:00 2001 From: Charalampos Stratakis Date: Wed, 18 Feb 2026 01:39:18 +0100 Subject: [PATCH] Bump click minimum version to 8.3.1 Click 8.1.8 through 8.3.0 have broken pager invocation for multi-argument PAGER values, which causes behave test failures. Fixed on https://github.com/pallets/click/commit/7db1f20 --- AUTHORS | 1 + pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/AUTHORS b/AUTHORS index 771de13f1..eff9c16e3 100644 --- a/AUTHORS +++ b/AUTHORS @@ -144,6 +144,7 @@ Contributors: * Jay Knight (jay-knight) * fbdb * Charbel Jacquin (charbeljc) + * Charalampos Stratakis Creator: -------- diff --git a/pyproject.toml b/pyproject.toml index c3268cd8c..f70af1762 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,7 @@ urls = { Homepage = "https://pgcli.com" } requires-python = ">=3.9" dependencies = [ "pgspecial>=2.0.0", - "click >= 4.1,<8.1.8", + "click >= 8.3.1", "Pygments>=2.0", # Pygments has to be Capitalcased. # We still need to use pt-2 unless pt-3 released on Fedora32 # see: https://github.com/dbcli/pgcli/pull/1197