Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-fastapi for openSUSE:Factory checked in at 2024-08-15 09:57:29 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-fastapi (Old) and /work/SRC/openSUSE:Factory/.python-fastapi.new.7232 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-fastapi" Thu Aug 15 09:57:29 2024 rev:33 rq:1193792 version:0.112.0 Changes: -------- --- /work/SRC/openSUSE:Factory/python-fastapi/python-fastapi.changes 2024-08-13 13:23:01.897715434 +0200 +++ /work/SRC/openSUSE:Factory/.python-fastapi.new.7232/python-fastapi.changes 2024-08-15 09:57:35.113112839 +0200 @@ -1,0 +2,6 @@ +Wed Aug 14 02:13:46 UTC 2024 - Steve Kowalik <steven.kowa...@suse.com> + +- Add patch allow-starlette-0.38.patch: + * Allow starlette 0.38. + +------------------------------------------------------------------- New: ---- allow-starlette-0.38.patch BETA DEBUG BEGIN: New: - Add patch allow-starlette-0.38.patch: * Allow starlette 0.38. BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-fastapi.spec ++++++ --- /var/tmp/diff_new_pack.3c6bVI/_old 2024-08-15 09:57:35.705137616 +0200 +++ /var/tmp/diff_new_pack.3c6bVI/_new 2024-08-15 09:57:35.705137616 +0200 @@ -28,16 +28,18 @@ Source: https://files.pythonhosted.org/packages/source/f/fastapi/fastapi-%{version}.tar.gz # PATCH-FIX-OPENSUSE Remove two unknown classifiers Patch0: remove-classifiers.patch +# PATCH-FIX-UPSTREAM gh#fastapi/fastapi#11876 +Patch1: allow-starlette-0.38.patch BuildRequires: %{python_module hatchling} BuildRequires: %{python_module pip} BuildRequires: %{python_module pydantic-settings >= 2.0.0} -BuildRequires: %{python_module starlette >= 0.37.2 with %python-starlette < 0.38} +BuildRequires: %{python_module starlette >= 0.37.2 with %python-starlette < 0.39} BuildRequires: %{python_module typing_extensions >= 4.8.0} BuildRequires: fdupes BuildRequires: python-rpm-macros Requires: python-pydantic >= 1.8.2 Requires: python-typing_extensions >= 4.8.0 -Requires: (python-starlette >= 0.37.2 with python-starlette < 0.38) +Requires: (python-starlette >= 0.37.2 with python-starlette < 0.39) Requires(post): update-alternatives Requires(postun): update-alternatives BuildArch: noarch ++++++ allow-starlette-0.38.patch ++++++ >From a03ad2aa8bc9bc974ebf340146bf8d9a8afc0dbb Mon Sep 17 00:00:00 2001 From: "Benjamin A. Beasley" <c...@musicinmybrain.net> Date: Tue, 23 Jul 2024 16:45:07 -0400 Subject: [PATCH] Allow Starlette 0.38 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index dbaa42149897a..e231f330165fc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,7 +41,7 @@ classifiers = [ "Topic :: Internet :: WWW/HTTP", ] dependencies = [ - "starlette>=0.37.2,<0.38.0", + "starlette>=0.37.2,<0.39.0", "pydantic>=1.7.4,!=1.8,!=1.8.1,!=2.0.0,!=2.0.1,!=2.1.0,<3.0.0", "typing-extensions>=4.8.0", ]