summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-starlette_0.51.0.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2026-01-13 18:23:31 +0800
committerKhem Raj <raj.khem@gmail.com>2026-01-13 08:29:02 -0800
commit67972a72ec20432a9f84f111e0d57a3339451ecf (patch)
treea8c1103da9b2cff18695fbbc86dfa3f0ab7b15f7 /meta-python/recipes-devtools/python/python3-starlette_0.51.0.bb
parent88dc78a45776e124a077ac8b4f8422c10f91fffd (diff)
downloadmeta-openembedded-67972a72ec20432a9f84f111e0d57a3339451ecf.tar.gz
python3-starlette: upgrade 0.50.0 -> 0.51.0
Changelog: ============== - Add allow_private_network in CORSMiddleware - Increase warning stacklevel on DeprecationWarning for wsgi module Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-starlette_0.51.0.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-starlette_0.51.0.bb42
1 files changed, 42 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-starlette_0.51.0.bb b/meta-python/recipes-devtools/python/python3-starlette_0.51.0.bb
new file mode 100644
index 0000000000..f6380bdfad
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-starlette_0.51.0.bb
@@ -0,0 +1,42 @@
1SUMMARY = "Starlette is a lightweight ASGI framework/toolkit, which is ideal for building async web services in Python"
2LICENSE = "BSD-3-Clause"
3LIC_FILES_CHKSUM = "file://LICENSE.md;md5=11e8c8dbfd5fa373c703de492140ff7a"
4
5SRC_URI[sha256sum] = "4c4fda9b1bc67f84037d3d14a5112e523509c369d9d47b111b2f984b0cc5ba6c"
6
7inherit pypi python_hatchling ptest
8
9PYPI_PACKAGE = "starlette"
10CVE_PRODUCT = "starlette"
11
12SRC_URI += " \
13 file://run-ptest \
14"
15
16RDEPENDS:${PN}-ptest += " \
17 python3-attrs \
18 python3-ctypes \
19 python3-httpx \
20 python3-itsdangerous \
21 python3-jinja2 \
22 python3-outcome \
23 python3-pytest \
24 python3-pytest-asyncio \
25 python3-pytest-forked \
26 python3-python-multipart \
27 python3-sortedcontainers \
28 python3-terminal \
29 python3-trio \
30 python3-typing-extensions \
31 python3-unittest-automake-output \
32 python3-pyyaml \
33"
34
35do_install_ptest() {
36 install -d ${D}${PTEST_PATH}/tests
37 cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
38}
39
40RDEPENDS:${PN} += " \
41 python3-anyio \
42"