guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit a9ed2f9546bb56dcba9de779299e7bc9acac6d41
Author: Nicolas Graves <[email protected]>
AuthorDate: Wed Jan 14 15:33:45 2026 +0100

    gnu: python-fastapi: Update to 0.128.0.
    
    * gnu/packages/python-web.scm (python-fastapi): Update to 0.128.0.
    [arguments]<#:test-flags>: Update them.
    
    Change-Id: Ibc25b68e370e26c3d922096876ad8679caeda44c
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-web.scm | 19 +++++++++----------
 1 file changed, 9 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 680182b8ca..589cb16da1 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -13115,26 +13115,25 @@ Amazon S3 or any other external service.")
 (define-public python-fastapi
   (package
     (name "python-fastapi")
-    (version "0.124.0")
+    (version "0.128.0")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "fastapi" version))
        (sha256
-        (base32 "1rplb37099ivd9bxyy80hljb4979zsqdjbqzk5cx5rkmmmwd2316"))))
+        (base32 "0nk4ybvzv3bcgv5plbg3infykp19p1wryhpy1zk6n2pirvhpkh8w"))))
     (build-system pyproject-build-system)
     (arguments
      (list
       ;; tests: 1126 passed, 12 skipped, 2 deselected
       #:test-flags
-      #~(list "--ignore=tests/test_tutorial/"
-              "--ignore=docs_src/"
-              ;; Coverage is required.
-              "--deselect=tests/test_fastapi_cli.py::test_fastapi_cli"
-              ;;  pytest.PytestUnraisableExceptionWarning: Exception ignored
-              ;;  in: <function MemoryObjectReceiveStream.__del__ at
-              ;;  0x7ffff654af20>
-              "-Wignore::pytest.PytestUnraisableExceptionWarning")))
+      #~(list
+         ;; cannot import name 'StaticPool' from 'sqlalchemy'
+         "--ignore=tests/test_tutorial/"
+         ;; Some snapshots have incorrect values.
+         
"--deselect=tests/test_schema_compat_pydantic_v2.py::test_openapi_schema"
+         ;; Argument() missing 1 required positional argument: 'default'
+         "--ignore=tests/test_fastapi_cli.py")))
     (native-inputs
      (list python-anyio
            python-dirty-equals

Reply via email to