You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When building macOS binaries, we run into the problem that the default OpenSSL certificates may not include all of those in the Python certifi package. A good way to fix this is to replace the default OpenSSL certificates with those from the Python certifi package. This is what is done for the macOS binary from Python.org.
importsslimportcertifiopenssl_cafile=ssl.get_default_verify_paths().openssl_cafilecertifi_cafile=certifi.where()
# Copy `certifi_cafile` to `openssl_cafile`
The text was updated successfully, but these errors were encountered:
When building macOS binaries, we run into the problem that the default OpenSSL certificates may not include all of those in the Python certifi package. A good way to fix this is to replace the default OpenSSL certificates with those from the Python certifi package. This is what is done for the macOS binary from Python.org.
The text was updated successfully, but these errors were encountered: