forked from pool/python-httpx
Accepting request 993276 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/993276 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-httpx?expand=0&rev=6
This commit is contained in:
commit
94f5b22726
File diff suppressed because it is too large
Load Diff
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d6727a0c9a9bd762c051f546dd92682c1dbccd7c743e768e49bef53fb844a30d
|
||||
size 2157682
|
3
httpx-0.23.0.tar.gz
Normal file
3
httpx-0.23.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5eed3072c79769acb9e05d80354596e8350a4dda762cc8d5545b1cc204a42d9d
|
||||
size 2160686
|
@ -1,3 +1,45 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Aug 5 10:25:32 UTC 2022 - Ben Greiner <code@bnavigator.de>
|
||||
|
||||
- Drop transfer-encoding-lower-case.patch
|
||||
The headers are lowercase again with uvicorn 0.18
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Aug 5 08:30:50 UTC 2022 - Matej Cepl <mcepl@suse.com>
|
||||
|
||||
- Add transfer-encoding-lower-case.patch to fix failing tests due
|
||||
to incorrect capitalization of the 'transfer-encoding' header
|
||||
(gh#encode/httpx!1735).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 19 15:45:42 UTC 2022 - Ben Greiner <code@bnavigator.de>
|
||||
|
||||
- Update to 0.23.0
|
||||
* Drop support for Python 3.6. (#2097)
|
||||
* Use utf-8 as the default character set, instead of falling back
|
||||
to charset-normalizer for auto-detection. To enable automatic
|
||||
character set detection, see the documentation. (#2165)
|
||||
* Fix URL.copy_with for some oddly formed URL cases. (#2185)
|
||||
* Digest authentication should use case-insensitive comparison
|
||||
for determining which algorithm is being used. (#2204)
|
||||
* Fix console markup escaping in command line client. (#1866)
|
||||
* When files are used in multipart upload, ensure we always seek
|
||||
to the start of the file. (#2065)
|
||||
* Ensure that iter_bytes never yields zero-length chunks. (#2068)
|
||||
* Preserve Authorization header for redirects that are to the
|
||||
same origin, but are an http-to-https upgrade. (#2074)
|
||||
* When responses have binary output, don't print the output to
|
||||
the console in the command line client. Use output like <16086
|
||||
bytes of binary data> instead. (#2076)
|
||||
* Fix display of --proxies argument in the command line client
|
||||
help. (#2125)
|
||||
* Close responses when task cancellations occur during stream
|
||||
reading. (#2156)
|
||||
* Fix type error on accessing .request on HTTPError exceptions.
|
||||
(#2158)
|
||||
- Drop CVE-2021-41945-copy_with-data-leak.patch fixed upstream
|
||||
(bsc#1199002)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 2 03:01:52 UTC 2022 - Steve Kowalik <steven.kowalik@suse.com>
|
||||
|
||||
|
@ -16,7 +16,6 @@
|
||||
#
|
||||
|
||||
|
||||
%{?!python_module:%define python_module() python3-%{**}}
|
||||
%global flavor @BUILD_FLAVOR@%{nil}
|
||||
%if "%{flavor}" == "test"
|
||||
%define psuffix -test
|
||||
@ -25,58 +24,47 @@
|
||||
%define psuffix %{nil}
|
||||
%bcond_with test
|
||||
%endif
|
||||
%define skip_python2 1
|
||||
|
||||
Name: python-httpx%{psuffix}
|
||||
Version: 0.22.0
|
||||
Version: 0.23.0
|
||||
Release: 0
|
||||
Summary: Python HTTP client with async support
|
||||
License: BSD-3-Clause
|
||||
URL: https://github.com/encode/httpx
|
||||
Source: https://github.com/encode/httpx/archive/%{version}.tar.gz#/httpx-%{version}.tar.gz
|
||||
# PATCH-FIX-UPSTREAM CVE-2021-41945 gh#encode/httpx#2084 including changes
|
||||
# from gh#encode/httpx#2185
|
||||
# Don't leak data in httpx.URL.copy_with
|
||||
Patch0: CVE-2021-41945-copy_with-data-leak.patch
|
||||
BuildRequires: %{python_module base >= 3.7}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
Requires: python-brotlicffi
|
||||
Requires: python-certifi
|
||||
Requires: python-chardet >= 3.0
|
||||
Requires: python-charset-normalizer >= 2.0.6
|
||||
Requires: python-h11 >= 0.8.0
|
||||
Requires: python-hstspreload >= 2019.8.27
|
||||
Requires: python-httpcore >= 0.14.0
|
||||
Requires: python-httpcore >= 0.15.0
|
||||
Requires: python-idna >= 2.0
|
||||
Requires: python-rfc3986 >= 1.3
|
||||
Requires: python-sniffio
|
||||
Recommends: python-Brotli
|
||||
Recommends: python-Pygments >= 2
|
||||
Recommends: python-click >= 8
|
||||
Recommends: python-h2 >= 3.0
|
||||
Recommends: python-rich >= 10
|
||||
Requires(post): update-alternatives
|
||||
Requires(postun):update-alternatives
|
||||
Recommends: python-h2 >= 3.0
|
||||
BuildArch: noarch
|
||||
# SECTION test requirements
|
||||
%if %{with test}
|
||||
BuildRequires: %{python_module anyio}
|
||||
BuildRequires: %{python_module async_generator}
|
||||
BuildRequires: %{python_module brotlicffi}
|
||||
BuildRequires: %{python_module certifi}
|
||||
BuildRequires: %{python_module chardet >= 3.0}
|
||||
BuildRequires: %{python_module charset-normalizer >= 2.0.6}
|
||||
BuildRequires: %{python_module h11 >= 0.8.0}
|
||||
BuildRequires: %{python_module Brotli}
|
||||
BuildRequires: %{python_module Pygments >= 2}
|
||||
BuildRequires: %{python_module chardet >= 5.0}
|
||||
BuildRequires: %{python_module click >= 8}
|
||||
BuildRequires: %{python_module h2 >= 3.0}
|
||||
BuildRequires: %{python_module hstspreload >= 2019.8.27}
|
||||
BuildRequires: %{python_module httpcore >= 0.14.0}
|
||||
BuildRequires: %{python_module httpx}
|
||||
BuildRequires: %{python_module idna >= 2.0}
|
||||
BuildRequires: %{python_module httpx = %{version}}
|
||||
BuildRequires: %{python_module pytest-asyncio}
|
||||
BuildRequires: %{python_module pytest-trio}
|
||||
BuildRequires: %{python_module pytest}
|
||||
BuildRequires: %{python_module rfc3986 >= 1.3}
|
||||
BuildRequires: %{python_module sniffio}
|
||||
BuildRequires: %{python_module rich >= 10}
|
||||
BuildRequires: %{python_module trio}
|
||||
BuildRequires: %{python_module trustme}
|
||||
BuildRequires: %{python_module uvicorn}
|
||||
BuildRequires: %{python_module uvloop}
|
||||
# uvicorn 0.18 fixed an issue in the test suite where http-headers wer not all lowercase as expected
|
||||
BuildRequires: %{python_module uvicorn >= 0.18}
|
||||
%endif
|
||||
# /SECTION
|
||||
%python_subpackages
|
||||
@ -86,7 +74,8 @@ Python HTTP client with async support.
|
||||
|
||||
%prep
|
||||
%autosetup -p1 -n httpx-%{version}
|
||||
rm setup.cfg
|
||||
# remove turning pytest warnings into error
|
||||
sed -i '/tool.pytest/,$ {/error/d}' setup.cfg
|
||||
|
||||
%build
|
||||
%python_build
|
||||
@ -100,7 +89,11 @@ rm setup.cfg
|
||||
|
||||
%check
|
||||
%if %{with test}
|
||||
%pytest -k 'not (network or socks or test_main or response_no_charset or test_text_decoder)'
|
||||
# obs builds offline
|
||||
donttest="network"
|
||||
# no socksio
|
||||
donttest="$donttest or socks"
|
||||
%pytest -vv -k "not ($donttest)" --asyncio-mode=strict
|
||||
%endif
|
||||
|
||||
%post
|
||||
@ -114,7 +107,8 @@ rm setup.cfg
|
||||
%doc CHANGELOG.md README.md
|
||||
%license LICENSE.md
|
||||
%python_alternative %{_bindir}/httpx
|
||||
%{python_sitelib}/httpx*
|
||||
%{python_sitelib}/httpx
|
||||
%{python_sitelib}/httpx-%{version}*-info
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
|
Loading…
Reference in New Issue
Block a user