#1060 pyopenssl 18.0.0 has dropped Python 2.6 support
Closed: Fixed by mikem. Opened 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.

PR #1062

PR #1062

Commit 708ded81 fixes this issue

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

This issue has been migrated to Fedora Forge:
https://forge.fedoraproject.org/koji/koji/issues/1060

Please continue any further discussion there.

Metadata