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
Similar to how user credentials are handled in #5567 we require git clones to support TLS certificates as available with HTTP repositories.This should also handle in the (presenty in development) verify = false option for repositories.
For this, the get_transport_and_path call will need to pass in the correct vars or use a custom urrlib pool.
Similar to how user credentials are handled in #5567 we require git clones to support TLS certificates as available with HTTP repositories.This should also handle in the (presenty in development)
verify = false
option for repositories.For this, the
get_transport_and_path
call will need to pass in the correct vars or use a custom urrlib pool.poetry/src/poetry/vcs/git/backend.py
Lines 186 to 189 in 1c1cb92
This will also have to be done only for http vcs urls.
Prior to #5428, users could rely on system git client to handle these via options like
git config http.sslverify false
This is no longer possible unless a user forces the system git client backend to be used.
poetry config experimental.system-git-client true
The text was updated successfully, but these errors were encountered: