mirror of
https://github.com/openvswitch/ovs
synced 2025-09-01 14:55:18 +00:00
python: Require Python 3.7 for ssl.TLSVersion.
All the ssl.OP_NO_* options are deprecated since OpenSSL 1.1.0. Use minimum/maximum_version configuration instead. Unfortunately, those only available in Python 3.7, so increasing the minimal supported Python version. Python 3.7+ should be available in most modern distributions. It is also EoL at this point, but there is no need to require higher versions. Acked-by: Eelco Chaudron <echaudro@redhat.com> Signed-off-by: Ilya Maximets <i.maximets@ovn.org>
This commit is contained in:
@@ -93,7 +93,7 @@ setup_args = dict(
|
||||
'Topic :: System :: Networking',
|
||||
'License :: OSI Approved :: Apache Software License',
|
||||
'Programming Language :: Python :: 3',
|
||||
'Programming Language :: Python :: 3.6',
|
||||
'Programming Language :: Python :: 3.7',
|
||||
],
|
||||
ext_modules=[setuptools.Extension("ovs._json",
|
||||
sources=["ovs/_json.c"],
|
||||
|
Reference in New Issue
Block a user