Skip to content
Snippets Groups Projects

MAINT: Drop support for Python 3.6 and 3.7

Merged Florian Spreckelsen requested to merge f-drop-36-and-37 into dev
Files
5
@@ -179,6 +179,8 @@ class _DefaultCaosDBServerConnection(CaosDBServerConnection):
@@ -179,6 +179,8 @@ class _DefaultCaosDBServerConnection(CaosDBServerConnection):
try:
try:
ssl_version = ssl.PROTOCOL_TLS
ssl_version = ssl.PROTOCOL_TLS
except AttributeError:
except AttributeError:
 
# TODO(tfitschen): This can be removed since we require Python
 
# >= 3.8 anyway, can't it?
# deprecated since Python 3.6, but necessary until there.
# deprecated since Python 3.6, but necessary until there.
try:
try:
ssl_version = ssl.PROTOCOL_TLSv1_2
ssl_version = ssl.PROTOCOL_TLSv1_2
Loading