We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62d4e1a commit d4bfa4fCopy full SHA for d4bfa4f
pyoverkiz/client.py
@@ -171,6 +171,10 @@ def __init__(
171
# To avoid security issues while authentication to local API, we add the following authority to
172
# our HTTPS client trust store: https://ca.overkiz.com/overkiz-root-ca-2048.crt
173
self._ssl = SSL_CONTEXT_LOCAL_API
174
+
175
+ # Disable strict validation introduced in Python 3.13, which doesn't
176
+ # work with Overkiz self-signed gateway certificates
177
+ self._ssl.verify_flags &= ~ssl.VERIFY_X509_STRICT
178
else:
179
self.api_type = APIType.CLOUD
180
0 commit comments