Added missing dependency for psycopg3 in the wheel package.

This commit is contained in:
Khushboo Vashi
2023-03-23 11:50:52 +05:30
committed by GitHub
parent a66dfff39d
commit c5e1e74757

View File

@@ -40,7 +40,7 @@ kerberos_extras = []
# gssapi in it's own list
for index, req in enumerate(all_requires):
if 'psycopg[c]' in req:
req = req.replace('psycopg[c]', 'psycopg-binary')
req = req.replace('psycopg[c]', 'psycopg[binary]')
if 'gssapi' in req:
kerberos_extras.append(req)