mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-04-21 11:58:24 +00:00
python3-socketio: upgrade 5.9.0 -> 5.10.0
Changelog:
===========
-New SimpleClient and AsyncSimpleClient classes
-Reporting to Socket.IO Admin UI
-Support entering and leaving rooms through pubsub client managers
-Async versions of enter_room and leave_room should be coroutines
-Add a shutdown() function for the server
-Message queue optimizations
-Remove unneeded arguments from super()
-Internal code restructure (no functional changes)
-Add FastAPI and Litestar server examples
-Update Socket.IO JavaScript client to version 4.7.2 in all examples
-Update ping_timeout documented default to accord with current Engine.IO behavior
-Refactor common testing helpers into a separate module
-Migrate Python package metadata to pyproject.toml
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
(cherry picked from commit 0ee2fbb83d)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
This commit is contained in:
committed by
Armin Kuster
parent
1db9781f69
commit
3b59e77c21
@@ -0,0 +1,28 @@
|
||||
SUMMARY = "Socket.IO server"
|
||||
HOMEPAGE = "https://github.com/miguelgrinberg/python-socketio/"
|
||||
SECTION = "devel/python"
|
||||
|
||||
LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=42d0a9e728978f0eeb759c3be91536b8"
|
||||
|
||||
inherit pypi python_setuptools_build_meta
|
||||
|
||||
PYPI_PACKAGE = "python-socketio"
|
||||
|
||||
SRC_URI[sha256sum] = "01c616946fa9f67ed5cc3d1568e1c4940acfc64aeeb9ff621a53e80cabeb748a"
|
||||
|
||||
PACKAGECONFIG ?= "asyncio_client client"
|
||||
PACKAGECONFIG[asyncio_client] = ",,,${PYTHON_PN}-aiohttp ${PYTHON_PN}-websockets"
|
||||
PACKAGECONFIG[client] = ",,,${PYTHON_PN}-requests ${PYTHON_PN}-websocket-client"
|
||||
|
||||
RDEPENDS:${PN} += "\
|
||||
${PYTHON_PN}-engineio \
|
||||
${PYTHON_PN}-logging \
|
||||
${PYTHON_PN}-math \
|
||||
${PYTHON_PN}-pickle \
|
||||
${PYTHON_PN}-json \
|
||||
${PYTHON_PN}-threading \
|
||||
${PYTHON_PN}-six \
|
||||
${PYTHON_PN}-attrs \
|
||||
${PYTHON_PN}-bidict \
|
||||
"
|
||||
Reference in New Issue
Block a user