MySQLdb1 icon indicating copy to clipboard operation
MySQLdb1 copied to clipboard

Upgrade OpenSSL version

Open Luavis opened this issue 6 years ago • 1 comments

I got issues in running my application with MySQLdb, like following.

Library not loaded: /usr/local/opt/openssl/lib/libssl.1.0.0.dylib

When python loading _mysql.cpython-37m-darwin.so file, it might load libssl.1.0.0 files. does it need to be specify version of openssl? cause 1.0.0 will reach EOL on 20190-12-31, it will be getting hard to install openssl 1.0.x with package manager. FYI, Since openssl 1.0 will reach EOL on 2019-12-31, macOS Homebrew removed [email protected] in there repository.

Thanks.

Luavis avatar Nov 26 '19 07:11 Luavis

MySQL-python does not uses OpenSSL at all. It doesn't specify any ssl version too.

The underlaying library (libmysqlclient) use it. So if you are using recent libmysqlclient, you must be able to use OpenSSL 1.1.

methane avatar Dec 09 '19 07:12 methane