summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Marsh <kevinmarsh@users.noreply.github.com>2024-04-25 10:37:29 -0700
committerGitHub <noreply@github.com>2024-04-25 10:37:29 -0700
commitc6c5f041c09afba163e0f4cf1cd8f904e47a974a (patch)
tree0849003d53bb3e5b59ec3a4ddbfaa6ec4489ed7a
parent7f05cdefbb046dfe1c57c84a7f83f1af0264cabf (diff)
dependencies: add support for sqlparse 0.5.x (#1458)main
-rw-r--r--changelog.rst1
-rw-r--r--setup.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/changelog.rst b/changelog.rst
index aac79aaa..e09a3251 100644
--- a/changelog.rst
+++ b/changelog.rst
@@ -7,6 +7,7 @@ Features:
* Add `verbose_errors` config and `\v` special command which enable the
displaying of all Postgres error fields received.
* Show Postgres notifications.
+* Support sqlparse 0.5.x
Bug fixes:
----------
diff --git a/setup.py b/setup.py
index 640dca00..f4606c2b 100644
--- a/setup.py
+++ b/setup.py
@@ -14,7 +14,7 @@ install_requirements = [
"prompt_toolkit>=2.0.6,<4.0.0",
"psycopg >= 3.0.14; sys_platform != 'win32'",
"psycopg-binary >= 3.0.14; sys_platform == 'win32'",
- "sqlparse >=0.3.0,<0.5",
+ "sqlparse >=0.3.0,<0.6",
"configobj >= 5.0.6",
"cli_helpers[styles] >= 2.2.1",
]