| |
@@ -2,12 +2,18 @@
|
| |
|
| |
Name: python-%{pypi_name}
|
| |
Version: 0.16.1
|
| |
- Release: 1%{?dist}
|
| |
+ Release: 2%{?dist}
|
| |
Summary: Python HTTP client
|
| |
|
| |
License: BSD
|
| |
URL: https://github.com/encode/httpx
|
| |
Source0: %{pypi_source}
|
| |
+ # Version 0.16.1 has a dependency specified as "httpcore==0.12.*". This is not
|
| |
+ # properly parsed by EL8's automatic dependency generator, resulting in the
|
| |
+ # httpcore dependency missing. Upstream later changed this dependency to
|
| |
+ # "httpcore>=0.12.1,<0.13", which does parse correctly. We'll include that
|
| |
+ # patch so our automatic depencency gets added.
|
| |
+ Patch0: 0001-Incompatible-with-httpcore-0.12.0-1495.patch
|
| |
BuildArch: noarch
|
| |
|
| |
%description
|
| |
@@ -26,7 +32,7 @@
|
| |
async APIs, and support for both HTTP/1.1 and HTTP/2.
|
| |
|
| |
%prep
|
| |
- %autosetup -n %{pypi_name}-%{version}
|
| |
+ %autosetup -n %{pypi_name}-%{version} -p 1
|
| |
rm -rf %{pypi_name}.egg-info
|
| |
|
| |
%build
|
| |
@@ -42,6 +48,9 @@
|
| |
%{python3_sitelib}/%{pypi_name}-%{version}-py%{python3_version}.egg-info/
|
| |
|
| |
%changelog
|
| |
+ * Tue Sep 12 2023 Carl George <carlwgeorge@fedoraproject.org> - 0.16.1-2
|
| |
+ - Fix automatic dependency on httpcore, resolves rhbz#2237570
|
| |
+
|
| |
* Fri Oct 09 2020 Fabian Affolter <mail@fabian-affolter.ch> - 0.16.1-1
|
| |
- Update to new upstream release 0.16.1 (#1884265)
|
| |
|
| |
Resolves: rhbz#2237570