1
0
Fork 0

Compare commits

...

2 Commits

Author SHA1 Message Date
Kevin Marsh 841e061a6e dependencies: add support for sqlparse 0.5.x 2024-04-20 10:11:54 -07:00
Irina Truong 7f05cdefbb
rst2html -> docutils (#1459)
* Is there rst2html?

* docutils then?
2024-04-19 21:08:36 -07:00
3 changed files with 3 additions and 2 deletions

View File

@ -85,7 +85,7 @@ jobs:
run: behave tests/features --no-capture
- name: Check changelog for ReST compliance
run: rst2html.py --halt=warning changelog.rst >/dev/null
run: docutils --halt=warning changelog.rst >/dev/null
- name: Run Black
run: black --check .

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