summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlaixintao <laixintaoo@gmail.com>2020-09-14 10:01:23 +0800
committerlaixintao <laixintaoo@gmail.com>2020-09-14 10:01:23 +0800
commite60d28f1946cf22a83eee882f548368469bae375 (patch)
tree346775cfc06261fbead6f3dcaa223dfa8d9e1f0a
parent49930e2d8c16ee453d70c6b9d1311f81417deeae (diff)
bugfix: revert prompt_toolkit to 2.0.6
This was introduced by: e9c97072afe9d79276da568ef6791276fddb15d7 ( Use InputMode.REPLACE_SINGLE (#1208) ) see also: https://github.com/dbcli/pgcli/pull/1197
-rw-r--r--setup.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 5a221d98..4e0696fd 100644
--- a/setup.py
+++ b/setup.py
@@ -9,7 +9,9 @@ install_requirements = [
"pgspecial>=1.11.8",
"click >= 4.1",
"Pygments >= 2.0", # Pygments has to be Capitalcased. WTF?
- "prompt_toolkit>=3.0.6,<4.0.0",
+ # 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",
"psycopg2 >= 2.8",
"sqlparse >=0.3.0,<0.4",
"configobj >= 5.0.6",