summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmjith Ramanujam <amjith.r@gmail.com>2022-01-18 12:33:26 -0800
committerGitHub <noreply@github.com>2022-01-18 12:33:26 -0800
commita981564f9d0d67e9b583e2bff8f24f613084fbba (patch)
tree4b73bdb090f9bdb2d181995a10f0556895a58685
parent1ea687e1978e977eb995ee2e4ae73bb2ff22ba63 (diff)
Upgrade cli_helpers to workaround the Pygments regression. (#1310)
-rw-r--r--changelog.rst1
-rw-r--r--setup.py4
2 files changed, 3 insertions, 2 deletions
diff --git a/changelog.rst b/changelog.rst
index e02e1f24..86ccb58f 100644
--- a/changelog.rst
+++ b/changelog.rst
@@ -9,6 +9,7 @@ Bug fixes:
----------
* Prompt for password when -W is provided even if there is a password in keychain. Fixes #1307.
+* Upgrade cli_helpers to 2.2.1
3.3.0 (2022/01/11)
diff --git a/setup.py b/setup.py
index 68260e0d..0cbd192c 100644
--- a/setup.py
+++ b/setup.py
@@ -8,7 +8,7 @@ description = "CLI for Postgres Database. With auto-completion and syntax highli
install_requirements = [
"pgspecial>=1.11.8",
"click >= 4.1",
- "Pygments>=2.0,<=2.11.1", # Pygments has to be Capitalcased. WTF?
+ "Pygments>=2.0", # Pygments has to be Capitalcased. WTF?
# We still need to use pt-2 unless pt-3 released on Fedora32
# see: https://github.com/dbcli/pgcli/pull/1197
"prompt_toolkit>=2.0.6,<4.0.0",
@@ -16,7 +16,7 @@ install_requirements = [
"sqlparse >=0.3.0,<0.5",
"configobj >= 5.0.6",
"pendulum>=2.1.0",
- "cli_helpers[styles] >= 2.0.0",
+ "cli_helpers[styles] >= 2.2.1",
]