1
0
Fork 0

dependencies: add support for sqlparse 0.5.x

This commit is contained in:
Kevin Marsh 2024-04-15 11:27:17 -07:00
parent 7f05cdefbb
commit 841e061a6e
2 changed files with 2 additions and 1 deletions

View File

@ -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:
----------

View File

@ -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",
]