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
ImportError: cannot import name 'verify' from 'OpenSSL.crypto' (unknown location) when starting the app.
I've found that adding a force version to the Pipenv file fixes it:
# force this version# probably used by requests below# otherwise get ImportError: cannot import name 'verify' from 'OpenSSL.crypto' (unknown location)
pyopenssl = "==24.2.1"
requests = {extras = ["socks"], version = "*"}
After running a
pipenv update
yesterday I got:ImportError: cannot import name 'verify' from 'OpenSSL.crypto' (unknown location)
when starting the app.I've found that adding a force version to the Pipenv file fixes it:
https://pypi.org/project/pyOpenSSL/ - verify has been dropped in the latest version.
The text was updated successfully, but these errors were encountered: