diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2026-01-14 15:33:45 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-02-07 12:28:51 +0100 |
| commit | b49f6636a0098c0e7933f24cf1677615e8657ec4 (patch) | |
| tree | dbdc60268ad643ad666c5215e30a255bf5189fd0 | |
| parent | abbade3c60b039788ee1855112792c0c561ff79a (diff) | |
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 <sharlatanus@gmail.com>
| -rw-r--r-- | gnu/packages/python-web.scm | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 680182b8cad..589cb16da1c 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 |
