diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-11-26 18:39:41 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-13 20:28:37 +0000 |
commit | db7da9c80294c78608ebf0b34167c931f50ecc77 (patch) | |
tree | d7c3a91be4893a403a8875852bdaa8226e21b2e7 /gnu | |
parent | 337d2d0f9f36d9ff0fc6a2014f20738997f680ac (diff) | |
download | guix-db7da9c80294c78608ebf0b34167c931f50ecc77.tar.gz guix-db7da9c80294c78608ebf0b34167c931f50ecc77.zip |
gnu: python-uvicorn: Update to 0.32.1.
* gnu/packages/python-web.scm (python-uvicorn): Update to 0.32.1.
[arguments]<test-flags>: Disable multiprocess tests.
<phases>: Remove 'patch-pyproject, newer version of Hatchling does like
it now.
Change-Id: Ie22fc5134d5e40eb4bb7e27681556fc88af886ef
Diffstat (limited to 'gnu')
-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 d46d16c91e..6fd8c3f71f 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -6581,7 +6581,7 @@ and fairly speedy.") (define-public python-uvicorn (package (name "python-uvicorn") - (version "0.32.0") + (version "0.32.1") (source (origin ;; PyPI tarball has no tests. @@ -6591,19 +6591,18 @@ and fairly speedy.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "0csl5drf58yhih6kyl5imkkb1hsv24c99fjkzhr3pmzas0jahf1d")))) + (base32 "0mrp87l2d5k2dcz07wj2vysjsa99lw5xp12a1a2xiciahg04w7ib")))) (build-system pyproject-build-system) (arguments (list #:test-flags - '(list "-o" "asyncio_mode=auto") - #:phases - '(modify-phases %standard-phases - (add-after 'unpack 'patch-pyproject - (lambda _ - ;; Hatchling doesn't like this. - (substitute* "pyproject.toml" - ((".*Programming Language :: Python :: 3.13.*") ""))))))) + #~(list "-o" "asyncio_mode=auto" + ;; For some reason tests stacked in infinity re-invocation loop: + ;; AssertionError where is_alive = + ;; <uvicorn.supervisors.multiprocess.Process object at + ;; 0x7ffff39b6110>.is_alive. + ;; Maybe this <https://github.com/encode/uvicorn/issues/2466>. + "--ignore=tests/supervisors/test_multiprocess.py"))) (native-inputs (list python-a2wsgi python-hatchling |