From f545e5874545fbe1c9190b2eeb6ffb64b23a41e9 Mon Sep 17 00:00:00 2001 From: Jeremy Cline Date: Wed, 18 Apr 2018 12:16:13 -0400 Subject: [PATCH] Drop the dependency on cryptography and idna Both these dependencies were only used by the PyOpenSSL injection module, which we don't need on Fedora as we ship sufficiently new versions of Python. --- python-urllib3.spec | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/python-urllib3.spec b/python-urllib3.spec index 6a650c8..1e9f8c9 100644 --- a/python-urllib3.spec +++ b/python-urllib3.spec @@ -2,7 +2,7 @@ Name: python-%{srcname} Version: 1.22 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Python HTTP library with thread-safe connection pooling and file post License: MIT @@ -28,8 +28,6 @@ Requires: python2-six Requires: python2-backports-ssl_match_hostname # Secure extra requirements -Requires: python2-cryptography -Requires: python2-idna Requires: python2-ipaddress Requires: python2-pysocks @@ -65,9 +63,6 @@ BuildRequires: python3-tornado Requires: ca-certificates Requires: python3-six Requires: python3-pysocks -Requires: python3-cryptography -Requires: python3-idna -Requires: python3-pysocks %description -n python3-%{srcname} Python3 HTTP module with connection pooling and file POST abilities. @@ -140,6 +135,9 @@ py.test-3 %changelog +* Wed Apr 18 2018 Jeremy Cline - 1.22-8 +- Drop the dependency on idna and cryptography (rhbz 1567862) + * Mon Apr 16 2018 Jeremy Cline - 1.22-7 - Drop the dependency on PyOpenSSL, it's not needed (rhbz 1567862)