Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-requests for openSUSE:Factory checked in at 2023-03-04 22:42:18 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-requests (Old) and /work/SRC/openSUSE:Factory/.python-requests.new.31432 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-requests" Sat Mar 4 22:42:18 2023 rev:77 rq:1069145 version:2.28.2 Changes: -------- --- /work/SRC/openSUSE:Factory/python-requests/python-requests.changes 2023-01-23 18:30:46.495621834 +0100 +++ /work/SRC/openSUSE:Factory/.python-requests.new.31432/python-requests.changes 2023-03-04 22:42:25.131522279 +0100 @@ -1,0 +2,6 @@ +Thu Feb 16 17:03:23 UTC 2023 - David Anes <david.a...@suse.com> + +- Don't upper limit version of charset_normalized at runtime, too. + * Added change to patch: requests-no-hardcoded-version.patch + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-requests.spec ++++++ --- /var/tmp/diff_new_pack.caOC98/_old 2023-03-04 22:42:26.383528297 +0100 +++ /var/tmp/diff_new_pack.caOC98/_new 2023-03-04 22:42:26.383528297 +0100 @@ -33,9 +33,8 @@ Group: Development/Languages/Python URL: https://docs.python-requests.org/ Source: https://files.pythonhosted.org/packages/source/r/requests/requests-%{version}.tar.gz -# PATCH-FIX-SUSE: do not hardcode versions in setup.py/requirements +# PATCH-FIX-UPSTREAM: Allow charset normalizer >=2 and <4, and don't strict require httpbin===1.0.0 Patch0: requests-no-hardcoded-version.patch -# PATCH-FIX-UPSTREAN: Allow charset normalizer >=2 and <4 BuildRequires: %{python_module base >= 3.7} BuildRequires: %{python_module setuptools} BuildRequires: fdupes @@ -91,8 +90,7 @@ + URL + HTTP Auth Registry. %prep -%setup -q -n requests-%{version} -%autopatch -p1 +%autosetup -p1 -n requests-%{version} # drop shebang from certs.py sed -i '1s/^#!.*$//' requests/certs.py ++++++ requests-no-hardcoded-version.patch ++++++ --- /var/tmp/diff_new_pack.caOC98/_old 2023-03-04 22:42:26.427528509 +0100 +++ /var/tmp/diff_new_pack.caOC98/_new 2023-03-04 22:42:26.427528509 +0100 @@ -1,7 +1,22 @@ -diff -ur requests-2.28.1.orig/setup.py requests-2.28.1/setup.py ---- requests-2.28.1.orig/setup.py 2022-06-29 17:09:45.000000000 +0200 -+++ requests-2.28.1/setup.py 2022-06-29 21:15:48.428104387 +0200 -@@ -65,7 +65,7 @@ +--- + requirements-dev.txt | 2 +- + setup.py | 2 +- + 2 files changed, 2 insertions(+), 2 deletions(-) + +--- a/requirements-dev.txt ++++ b/requirements-dev.txt +@@ -1,7 +1,7 @@ + -e .[socks] + pytest>=2.8.0,<=6.2.5 + pytest-cov +-pytest-httpbin==1.0.0 ++pytest-httpbin>=1.0.0 + pytest-mock==2.0.0 + httpbin==0.7.0 + trustme +--- a/setup.py ++++ b/setup.py +@@ -65,7 +65,7 @@ requires = [ "certifi>=2017.4.17", ] test_requirements = [