We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b8b5f9e + a301432 commit 58c14d9Copy full SHA for 58c14d9
pyepp/__init__.py
@@ -1,6 +1,6 @@
1
"""
2
PyEPP Package
3
4
-__version__ = "0.0.14"
+__version__ = "0.0.15"
5
6
from pyepp.epp import EppCommunicator, EppResultCode, EppCommunicatorException
pyepp/epp.py
@@ -218,6 +218,7 @@ def connect(self) -> bytes:
218
219
try:
220
self._context = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT)
221
+ self._context.minimum_version = ssl.TLSVersion.TLSv1_2
222
self._context.load_default_certs()
223
self._context.load_cert_chain(certfile=self._client_cert, keyfile=self._client_key)
224
0 commit comments