Skip to content

Commit

Permalink
Update minimal requirement of six to >= 1.12.0
Browse files Browse the repository at this point in the history
urllib3-1.25.7 do not work with python3-six-1.11.0 which
is in CentOS8 base repo. So to ensure when urllib3 is installed
already installed python3-six is upgraded let's set minimum
requirement of six to >= 1.12.0[1] which contains required methods like
six.ensure_text method needed by urllib3-1.25.7.

PR proposed to update in Fedora too[2].

In RDO we have six==1.14.0 in CentOS8 repos currently, so we
are good.

[1] urllib3/urllib3@5b047b
[2] https://src.fedoraproject.org/rpms/python-urllib3/pull-request/10
  • Loading branch information
karelyatin committed Jun 8, 2020
1 parent 898505f commit beb0773
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions python-urllib3.spec
Expand Up @@ -6,7 +6,7 @@

Name: python-%{srcname}
Version: 1.25.7
Release: 2%{?dist}
Release: 3%{?dist}
Summary: Python HTTP library with thread-safe connection pooling and file post

License: MIT
Expand Down Expand Up @@ -37,7 +37,7 @@ BuildRequires: python3-idna

Requires: ca-certificates
Requires: python3-idna
Requires: python3-six
Requires: python3-six >= 1.12.0
Requires: python3-pysocks

%description -n python3-%{srcname}
Expand Down Expand Up @@ -96,6 +96,9 @@ popd


%changelog
* Mon Jun 08 2020 Yatin Karel <ykarel@redhat.com> - 1.25.7-3
- Update minimal requirement of six to >= 1.12.0

* Mon Nov 18 2019 Miro Hrončok <mhroncok@redhat.com> - 1.25.7-2
- Subpackage python2-urllib3 has been removed
See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal
Expand Down

0 comments on commit beb0773

Please sign in to comment.