summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-uvicorn_0.44.0.bb
diff options
context:
space:
mode:
authorLeon Anavi <leon.anavi@konsulko.com>2026-04-15 15:28:28 +0300
committerKhem Raj <khem.raj@oss.qualcomm.com>2026-04-15 07:24:55 -0700
commit3f7567229cb470281feee83e8a5fcc6205175659 (patch)
tree187910a79fd1c9cbcbf4a32897efa7be949a021a /meta-python/recipes-devtools/python/python3-uvicorn_0.44.0.bb
parent4b2d216d53a323b88a74c7f4f535aa2fbf35a558 (diff)
downloadmeta-openembedded-3f7567229cb470281feee83e8a5fcc6205175659.tar.gz
python3-uvicorn: Upgrade 0.42.0 -> 0.44.0
Upgrade to release 0.44.0: - Implement websocket keepalive pings for websockets-sansio From 0.43.0: - Emit http.disconnect ASGI receive() event on server shutting down for streaming responses - Use native context parameter for create_task on Python 3.11+ - Drop cast in ASGI types Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-uvicorn_0.44.0.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-uvicorn_0.44.0.bb32
1 files changed, 32 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-uvicorn_0.44.0.bb b/meta-python/recipes-devtools/python/python3-uvicorn_0.44.0.bb
new file mode 100644
index 0000000000..ce92c96d8d
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-uvicorn_0.44.0.bb
@@ -0,0 +1,32 @@
1SUMMARY = "The lightning-fast ASGI server."
2HOMEPAGE = "https://github.com/encode/uvicorn"
3LICENSE = "BSD-3-Clause"
4LIC_FILES_CHKSUM = "file://LICENSE.md;md5=5c778842f66a649636561c423c0eec2e"
5RECIPE_MAINTAINER = "Tom Geelen <t.f.g.geelen@gmail.com>"
6
7SRC_URI[sha256sum] = "6c942071b68f07e178264b9152f1f16dfac5da85880c4ce06366a96d70d4f31e"
8
9SRC_URI += "file://0001-ptest-disable-failing-tests.patch"
10
11inherit pypi python_hatchling ptest-python-pytest
12
13PYPI_PACKAGE = "uvicorn"
14CVE_PRODUCT = "encode:uvicorn"
15CVE_STATUS[CVE-2020-7694] = "fixed-version: The vulnerability has been fixed since 0.11.7"
16
17RDEPENDS:${PN} = "\
18 python3-click \
19 python3-h11 (>=0.8) \
20 python3-httptools \
21 python3-multiprocessing \
22 python3-python-dotenv \
23 python3-websockets \
24 python3-wsproto \
25"
26
27RDEPENDS:${PN}-ptest += "\
28 python3-a2wsgi \
29 python3-httpx \
30 python3-pytest-mock \
31 python3-pyyaml \
32"