Remove tests for deprecated libraries (#229)

This commit is contained in:
Dmitry Shibanov
2023-05-24 18:52:49 +02:00
committed by GitHub
parent 80893f523f
commit c7573bf15e
3 changed files with 4 additions and 5 deletions

View File

@ -1,5 +1,3 @@
import distutils.sysconfig
from distutils.version import LooseVersion
import sysconfig
import sys
import platform
@ -55,7 +53,7 @@ else:
### Validate macOS
if os_type == 'Darwin':
### Validate openssl links
if LooseVersion(nativeVersion) < LooseVersion("3.7.0"):
if version_major == 3 and version_minor < 7:
expected_ldflags = '-L/usr/local/opt/openssl@1.1/lib'
ldflags = sysconfig.get_config_var('LDFLAGS')