mirror of
https://github.com/dbcli/pgcli.git
synced 2024-11-30 11:17:12 +03:00
dependencies: add support for sqlparse 0.5.x (#1458)
This commit is contained in:
parent
7f05cdefbb
commit
c6c5f041c0
@ -7,6 +7,7 @@ Features:
|
|||||||
* Add `verbose_errors` config and `\v` special command which enable the
|
* Add `verbose_errors` config and `\v` special command which enable the
|
||||||
displaying of all Postgres error fields received.
|
displaying of all Postgres error fields received.
|
||||||
* Show Postgres notifications.
|
* Show Postgres notifications.
|
||||||
|
* Support sqlparse 0.5.x
|
||||||
|
|
||||||
Bug fixes:
|
Bug fixes:
|
||||||
----------
|
----------
|
||||||
|
2
setup.py
2
setup.py
@ -14,7 +14,7 @@ install_requirements = [
|
|||||||
"prompt_toolkit>=2.0.6,<4.0.0",
|
"prompt_toolkit>=2.0.6,<4.0.0",
|
||||||
"psycopg >= 3.0.14; sys_platform != 'win32'",
|
"psycopg >= 3.0.14; sys_platform != 'win32'",
|
||||||
"psycopg-binary >= 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",
|
"configobj >= 5.0.6",
|
||||||
"cli_helpers[styles] >= 2.2.1",
|
"cli_helpers[styles] >= 2.2.1",
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user