-
I've been told that the psycopg2-binary module does not depend on an underlying installed version of Does this mean that The impetus for this thread is compatibility with shiny new postgres offerrings like Tembo & Neon. Both services' docs have the troubleshooting guides below that state that psql clients must be of version 14 or greater so that the Server Name Indication (SNI) can be done in TLS. On my local machine (arm64/M1 MacOS), I can use psycopg2 to connect without specifying an |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Psycopg2-binary comes with a libpq shipped, yes. The version shipped, for recent psycopg version, is > 14. The libpq shipped is usually declared in the news file and can be retrieved using the |
Beta Was this translation helpful? Give feedback.
Psycopg2-binary comes with a libpq shipped, yes. The version shipped, for recent psycopg version, is > 14. The libpq shipped is usually declared in the news file and can be retrieved using the
libpq_version()
function.