From 84658c5ea823f3f85793420d3ee08f1f1a504fb3 Mon Sep 17 00:00:00 2001 From: Javier Marcet Date: Mon, 1 Jan 2024 11:39:54 +0100 Subject: [PATCH] python-websocket-client: update to 1.7.0 - Renamed `mask` variable in ABNF to prevent name collision with `mask()` function (9b51f73) - Fixed old http import of HTTPStatus in _handshake.py (9b51f73) - Add `send_text()` and `send_bytes()` to _app.py - Improved typehint support (9b51f73, 8b73d00) - General readability improvements, made all string concatenations use f-strings (780584f, 3eabc6e) - Applied black formatting style to code (da7f286) Signed-off-by: Javier Marcet --- lang/python/python-websocket-client/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lang/python/python-websocket-client/Makefile b/lang/python/python-websocket-client/Makefile index c3173ce1ed..d77fabd0b5 100644 --- a/lang/python/python-websocket-client/Makefile +++ b/lang/python/python-websocket-client/Makefile @@ -1,11 +1,11 @@ include $(TOPDIR)/rules.mk PKG_NAME:=python-websocket-client -PKG_VERSION:=1.6.4 +PKG_VERSION:=1.7.0 PKG_RELEASE:=1 PYPI_NAME:=websocket-client -PKG_HASH:=b3324019b3c28572086c4a319f91d1dcd44e6e11cd340232978c684a7650d0df +PKG_HASH:=10e511ea3a8c744631d3bd77e61eb17ed09304c413ad42cf6ddfa4c7787e8fe6 PKG_MAINTAINER:=Javier Marcet PKG_LICENSE:=Apache-2.0