Skip to content
Snippets Groups Projects

FTS-1435: apply workaround for m2crypto only on sl6, remove sl5 workarounds

Merged FTS-1435: apply workaround for m2crypto only on sl6, remove sl5 workarounds
Merged Andrea Manzi requested to merge FTS-1435 into develop
1 file
+ 2
5
Compare changes
  • Side-by-side
  • Inline
+ 2
5
@@ -55,19 +55,16 @@ def apply_pycurl_workaround():
pycurl_ver = '==7.19.0'
dist = platform.dist()
if dist[0] in ('redhat', 'centos'):
apply_m2crypto_workaround()
os_major = dist[1].split('.')[0]
if os_major == '6':
pycurl_ver = '==7.19.0'
apply_pycurl_workaround()
elif os_major == '5':
pycurl_ver = '==7.15.5'
apply_m2crypto_workaround()
base_dir = os.path.dirname(__file__)
setup(
name='fts3-rest',
version='3.8.4',
version='3.9.1',
description='FTS3 Python Libraries',
long_description='FTS3 Python Libraries',
author='FTS3 Developers',
Loading