summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-websockets_10.4.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2023-04-10 16:27:42 +0800
committerKhem Raj <raj.khem@gmail.com>2023-04-10 09:39:38 -0700
commit05dda95465c98c8617bd2790a73dee796e834060 (patch)
tree4348a1bd88f399a66fa5ea7b5f73d6cb73d53210 /meta-python/recipes-devtools/python/python3-websockets_10.4.bb
parentebe266a0b486ddeafcd45e7be1281e4dc3fec08d (diff)
downloadmeta-openembedded-05dda95465c98c8617bd2790a73dee796e834060.tar.gz
python3-websockets: upgrade 10.4 -> 11.0.1
License-Update: Use standard licence text and SPDX identifier. Changelog: ========== Bug fixes ---------- Restored the C extension in the source distribution. Backwards-incompatible changes ------------------------------- The Sans-I/O implementation was moved. Sans-I/O protocol constructors now use keyword-only arguments. Closing a connection without an empty close frame is OK. serve() times out on the opening handshake after 10 seconds by default. New features ------------- websockets 10.0 introduces a implementation on top of threading. Added open_timeout to serve(). Made it possible to close a server without closing existing connections. Added select_subprotocol to customize negotiation of subprotocols in the Sans-I/O layer. Improvements -------------- Added platform-independent wheels. Improved error handling in broadcast(). Set server_hostname automatically on TLS connections when providing a sock argument to connect(). 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-websockets_10.4.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-websockets_10.4.bb15
1 files changed, 0 insertions, 15 deletions
diff --git a/meta-python/recipes-devtools/python/python3-websockets_10.4.bb b/meta-python/recipes-devtools/python/python3-websockets_10.4.bb
deleted file mode 100644
index fac4d7a424..0000000000
--- a/meta-python/recipes-devtools/python/python3-websockets_10.4.bb
+++ /dev/null
@@ -1,15 +0,0 @@
1SUMMARY = "An implementation of the WebSocket Protocol (RFC 6455)"
2HOMEPAGE = "https://github.com/aaugustin/websockets"
3
4LICENSE = "BSD-3-Clause"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=78c2cc91e172ca96d6f8e4a76c739ec6"
6
7inherit pypi setuptools3
8
9SRC_URI[sha256sum] = "eef610b23933c54d5d921c92578ae5f89813438fded840c2e9809d378dc765d3"
10
11BBCLASSEXTEND = "native nativesdk"
12
13RDEPENDS:${PN} = "\
14 ${PYTHON_PN}-asyncio \
15"