Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-poetry for openSUSE:Factory checked in at 2023-05-09 13:08:28 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-poetry (Old) and /work/SRC/openSUSE:Factory/.python-poetry.new.1533 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-poetry" Tue May 9 13:08:28 2023 rev:24 rq:1085570 version:1.4.2 Changes: -------- --- /work/SRC/openSUSE:Factory/python-poetry/python-poetry.changes 2023-05-03 12:57:26.343889531 +0200 +++ /work/SRC/openSUSE:Factory/.python-poetry.new.1533/python-poetry.changes 2023-05-09 13:08:39.185490679 +0200 @@ -1,0 +2,18 @@ +Mon May 8 20:28:11 UTC 2023 - Ben Greiner <[email protected]> + +- Sync requests-toolbelt clamps with python metadata + * Add poetry-pr7893-unpin-requests-toolbelt.patch + * gh#python-poetry/poetry#7893 + +------------------------------------------------------------------- +Mon May 8 09:07:17 UTC 2023 - Daniel Garcia <[email protected]> + +- Remove python-requests-toolbelt upper version limit to make it work + with latest request (1.0.0) + +------------------------------------------------------------------- +Mon May 8 04:57:28 UTC 2023 - Johannes Kastl <[email protected]> + +- add sle15_python_module_pythons + +------------------------------------------------------------------- New: ---- poetry-pr7893-unpin-requests-toolbelt.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-poetry.spec ++++++ --- /var/tmp/diff_new_pack.Bp4uCl/_old 2023-05-09 13:08:39.729493917 +0200 +++ /var/tmp/diff_new_pack.Bp4uCl/_new 2023-05-09 13:08:39.737493965 +0200 @@ -25,6 +25,7 @@ %bcond_with test %endif +%{?sle15_python_module_pythons} Name: python-poetry%{psuffix} Version: 1.4.2 Release: 0 @@ -34,6 +35,8 @@ URL: https://python-poetry.org/ # PyPI sdist doesnt contain tests Source: https://github.com/python-poetry/poetry/archive/%{version}.tar.gz#/poetry-%{version}.tar.gz +# PATCH-FIX-UPSTREAM poetry-pr7893-unpin-requests-toolbelt.patch gh#python-poetry/poetry#7893 +Patch0: poetry-pr7893-unpin-requests-toolbelt.patch BuildRequires: %{python_module base >= 3.7} BuildRequires: %{python_module pip} BuildRequires: %{python_module poetry-core = 1.5.2} @@ -63,7 +66,7 @@ Requires: python-pyproject-hooks >= 1.0.0 Requires: python-requests >= 2.18 Requires: python-shellingham >= 1.5 -Requires: (python-requests-toolbelt >= 0.9.1 with python-requests-toolbelt < 0.11.0) +Requires: (python-requests-toolbelt >= 0.9.1 with python-requests-toolbelt < 2) %if 0%{?python_version_nodots} < 311 Requires: python-tomli >= 2.0.1 %endif ++++++ poetry-pr7893-unpin-requests-toolbelt.patch ++++++ >From 8357c12dcec3f6af0c41778a4e6d9e2804b1f5b5 Mon Sep 17 00:00:00 2001 From: Ben Greiner <[email protected]> Date: Mon, 8 May 2023 22:12:03 +0200 Subject: [PATCH 1/2] raise requests-toolbelt upper bound --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: poetry-1.4.2/pyproject.toml =================================================================== --- poetry-1.4.2.orig/pyproject.toml +++ poetry-1.4.2/pyproject.toml @@ -69,7 +69,7 @@ pkginfo = "^1.9.4" platformdirs = "^2.5.2" pyproject-hooks = "^1.0.0" requests = "^2.18" -requests-toolbelt = ">=0.9.1,<0.11.0" +requests-toolbelt = ">=0.9.1,<2" shellingham = "^1.5" tomli = { version = "^2.0.1", python = "<3.11" } # exclude 0.11.2 and 0.11.3 due to https://github.com/sdispater/tomlkit/issues/225
