mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-21 16:27:39 -06:00
Fixed an issue where only psycopg-binary should be installed but PIP wheel installing psycopg-c as well.
This commit is contained in:
parent
23cad47f8d
commit
b9ffbf73e0
@ -47,7 +47,7 @@ for index, req in enumerate(all_requires):
|
|||||||
and platform.mac_ver()[0] < '14.0':
|
and platform.mac_ver()[0] < '14.0':
|
||||||
req = 'psycopg[binary]==3.1.19'
|
req = 'psycopg[binary]==3.1.19'
|
||||||
else:
|
else:
|
||||||
req.replace('psycopg[c]', 'psycopg[binary]')
|
req = req.replace('psycopg[c]', 'psycopg[binary]')
|
||||||
|
|
||||||
if 'gssapi' in req:
|
if 'gssapi' in req:
|
||||||
kerberos_extras.append(req)
|
kerberos_extras.append(req)
|
||||||
|
Loading…
Reference in New Issue
Block a user