Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-httpx for openSUSE:Factory checked in at 2023-11-02 20:20:51 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-httpx (Old) and /work/SRC/openSUSE:Factory/.python-httpx.new.17445 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-httpx" Thu Nov 2 20:20:51 2023 rev:12 rq:1121509 version:0.25.0 Changes: -------- --- /work/SRC/openSUSE:Factory/python-httpx/python-httpx.changes 2023-10-26 17:11:53.418696672 +0200 +++ /work/SRC/openSUSE:Factory/.python-httpx.new.17445/python-httpx.changes 2023-11-02 20:20:55.442630539 +0100 @@ -1,0 +2,6 @@ +Tue Oct 31 10:55:34 UTC 2023 - Markéta Machová <mmach...@suse.com> + +- Add upstream newer-httpcore.patch + * it only allows httpcore 1.0.0 in the pyproject.toml, no code changes + +------------------------------------------------------------------- New: ---- newer-httpcore.patch BETA DEBUG BEGIN: New: - Add upstream newer-httpcore.patch * it only allows httpcore 1.0.0 in the pyproject.toml, no code changes BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-httpx.spec ++++++ --- /var/tmp/diff_new_pack.EBHOkv/_old 2023-11-02 20:20:56.126655708 +0100 +++ /var/tmp/diff_new_pack.EBHOkv/_new 2023-11-02 20:20:56.126655708 +0100 @@ -33,6 +33,8 @@ 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 https://github.com/encode/httpx/pull/2885 Support newer versions of httpcore +Patch: newer-httpcore.patch BuildRequires: %{python_module base >= 3.7} BuildRequires: %{python_module hatch-fancy-pypi-readme} BuildRequires: %{python_module hatchling} @@ -40,10 +42,11 @@ BuildRequires: %{python_module wheel} BuildRequires: fdupes BuildRequires: python-rpm-macros +Requires: python-anyio Requires: python-certifi +Requires: python-httpcore >= 0.18.0 Requires: python-idna >= 2.0 Requires: python-sniffio -Requires: (python-httpcore >= 0.18.0 with python-httpcore < 0.19.0) Recommends: python-Brotli Recommends: python-Pygments >= 2 Recommends: python-click >= 8 ++++++ newer-httpcore.patch ++++++ >From aff5a9327f393379f2ef87acad0b0fc6ddee608f Mon Sep 17 00:00:00 2001 From: Paul Schreiber <paulschrei...@gmail.com> Date: Mon, 9 Oct 2023 16:04:17 -0400 Subject: [PATCH 1/4] Support newer versions of httpcore httpcore 1.0.0 was release October 6, 2023. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index baa92e9a43..ef4d02b12d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,7 @@ classifiers = [ ] dependencies = [ "certifi", - "httpcore>=0.18.0,<0.19.0", + "httpcore", "idna", "sniffio", ] >From 4b0f70d2d56075b84b7abdf3111f0bb11064b9fc Mon Sep 17 00:00:00 2001 From: Tom Christie <t...@tomchristie.com> Date: Wed, 11 Oct 2023 12:18:52 +0100 Subject: [PATCH 2/4] Update pyproject.toml --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index ef4d02b12d..f1e2d78f94 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,6 +30,7 @@ classifiers = [ dependencies = [ "certifi", "httpcore", + "anyio", "idna", "sniffio", ] >From aa7a02ab0cdf22489b3fe5b48e4253c5533b9dfd Mon Sep 17 00:00:00 2001 From: Paul Schreiber <paulschrei...@gmail.com> Date: Wed, 11 Oct 2023 09:59:45 -0400 Subject: [PATCH 3/4] Update pyproject.toml Co-authored-by: Kar Petrosyan <92274156+karpetros...@users.noreply.github.com> --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f1e2d78f94..ef4d02b12d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,7 +30,6 @@ classifiers = [ dependencies = [ "certifi", "httpcore", - "anyio", "idna", "sniffio", ] >From 4215d27bcdf934e64ad223b7945806f6104edc90 Mon Sep 17 00:00:00 2001 From: Paul Schreiber <paulschrei...@gmail.com> Date: Thu, 19 Oct 2023 10:40:57 -0400 Subject: [PATCH 4/4] Update pyproject.toml Co-authored-by: Tom Christie <t...@tomchristie.com> --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index ef4d02b12d..f1e2d78f94 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,6 +30,7 @@ classifiers = [ dependencies = [ "certifi", "httpcore", + "anyio", "idna", "sniffio", ]