File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ Bug fixes:
1010
1111* Fix display of "short host" in prompt (with `\h `) for IPv4 addresses ([issue 964](https://github.com/dbcli/pgcli/issues/964)).
1212* Fix backwards display of NOTICEs from a Function ([issue 1443](https://github.com/dbcli/pgcli/issues/1443))
13-
13+ * Fix psycopg errors when installing on Windows. ([issue 1413](https://https://github.com/dbcli/pgcli/issues/1413))
1414
1515==================
16164.0.1 (2023-10-30)
Original file line number Diff line number Diff line change 1212 # We still need to use pt-2 unless pt-3 released on Fedora32
1313 # see: https://github.com/dbcli/pgcli/pull/1197
1414 "prompt_toolkit>=2.0.6,<4.0.0" ,
15- "psycopg >= 3.0.14" ,
15+ "psycopg >= 3.0.14; sys_platform != 'win32'" ,
16+ "psycopg-binary >= 3.0.14; sys_platform == 'win32'" ,
1617 "sqlparse >=0.3.0,<0.5" ,
1718 "configobj >= 5.0.6" ,
1819 "pendulum>=2.1.0" ,
2728if platform .system () != "Windows" and not platform .system ().startswith ("CYGWIN" ):
2829 install_requirements .append ("setproctitle >= 1.1.9" )
2930
30- # Windows will require the binary psycopg to run pgcli
31- if platform .system () == "Windows" :
32- install_requirements .append ("psycopg-binary >= 3.0.14" )
33-
34-
3531setup (
3632 name = "pgcli" ,
3733 author = "Pgcli Core Team" ,
You can’t perform that action at this time.
0 commit comments