#1060 pyopenssl 18.0.0 has dropped Python 2.6 support
Closed: Fixed 5 years ago by mikem. Opened 5 years ago by cqi.

I see python_requires='>=2.6' in Koji setup.py. Probably version needs to be specified for pyopenssl in install_requires.

I found this issue when I tried to provision an environment to run rpkg tests with Python 2.6.

References:

[1] https://github.com/pyca/pyopenssl/blob/master/CHANGELOG.rst#1800-2018-05-16


Python 2.6 is still on el6 which we still need to support, so we might do more works rather than simply dropping py2.6 requirement

@julian8628, I'm not asking for dropping py2.6. I meant it would be required to modify install_requires like this:

        'pyOpenSSL<18.0.0',

or

if py26:
    requires.append('pyOpenSSL<18.0.0')
else:
    requires.append('pyOpenSSL')

or something else like that.

oh, I realized the change of dependency in koji.spec isn't required here.

Metadata Update from @tkopecek:
- Issue set to the milestone: 1.17

4 years ago

Login to comment on this ticket.

Metadata