diff --git a/fastapi-0.103.2.tar.gz b/fastapi-0.103.2.tar.gz deleted file mode 100644 index 578a5db..0000000 --- a/fastapi-0.103.2.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:75a11f6bfb8fc4d2bec0bd710c2d5f2829659c0e8c0afd5560fdda6ce25ec653 -size 11231158 diff --git a/fastapi-0.104.0.tar.gz b/fastapi-0.104.0.tar.gz new file mode 100644 index 0000000..e69b7af --- /dev/null +++ b/fastapi-0.104.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c44de45693ae037b0c6914727a29c49a40668432b67c859a87851fc6a7b74c6 +size 11296936 diff --git a/python-fastapi.changes b/python-fastapi.changes index e62be15..c15f21f 100644 --- a/python-fastapi.changes +++ b/python-fastapi.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Thu Oct 19 11:21:33 UTC 2023 - Ondřej Súkup + +- update to 0.104.0 + * Add reference (code API) docs with PEP 727, add subclass + with custom docstrings for BackgroundTasks, refactor docs structure. +- disable test_dependency_gets_exception -> https://github.com/tiangolo/fastapi/discussions/9934 + ------------------------------------------------------------------- Sun Oct 1 15:35:20 UTC 2023 - Ondřej Súkup diff --git a/python-fastapi.spec b/python-fastapi.spec index af576c2..e135e96 100644 --- a/python-fastapi.spec +++ b/python-fastapi.spec @@ -19,7 +19,7 @@ # Keep extra test requirements out of Ring1 %bcond_with ringdisabled Name: python-fastapi -Version: 0.103.2 +Version: 0.104.0 Release: 0 Summary: FastAPI framework License: MIT @@ -31,10 +31,12 @@ BuildRequires: %{python_module hatchling} BuildRequires: %{python_module pip} BuildRequires: %{python_module pydantic >= 1.8.2} BuildRequires: %{python_module starlette >= 0.27.0} +BuildRequires: %{python_module typing_extensions >= 4.8.0} BuildRequires: fdupes BuildRequires: python-rpm-macros Requires: python-pydantic >= 1.8.2 Requires: python-starlette >= 0.27.0 +Requires: python-typing_extensions >= 4.8.0 BuildArch: noarch # SECTION test requirements BuildRequires: %{python_module pytest} @@ -75,6 +77,8 @@ Python FastAPI framework. %check # more warnings as expected donttest="test_warn_duplicate_operation_id" +# https://github.com/tiangolo/fastapi/discussions/9934 +donttest="$donttest or test_dependency_gets_exception" %if %{with ringdisabled} ignorefiles="$ignorefiles --ignore tests/test_default_response_class.py" ignorefiles="$ignorefiles --ignore tests/test_tutorial/test_async_sql_databases/test_tutorial001.py"