Skip to content

Commit 58c14d9

Browse files
authored
Merge pull request #120 from InternetNZ/develop
Release version 0.0.15
2 parents b8b5f9e + a301432 commit 58c14d9

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

pyepp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
PyEPP Package
33
"""
4-
__version__ = "0.0.14"
4+
__version__ = "0.0.15"
55

66
from pyepp.epp import EppCommunicator, EppResultCode, EppCommunicatorException

pyepp/epp.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,7 @@ def connect(self) -> bytes:
218218
"""
219219
try:
220220
self._context = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT)
221+
self._context.minimum_version = ssl.TLSVersion.TLSv1_2
221222
self._context.load_default_certs()
222223
self._context.load_cert_chain(certfile=self._client_cert, keyfile=self._client_key)
223224

0 commit comments

Comments
 (0)