diff options
| author | Ivan Belokobylskiy | 2025-12-26 10:46:58 +0000 |
|---|---|---|
| committer | Josef Schlehofer | 2025-12-28 13:11:20 +0000 |
| commit | 05c7ab7466b0dd6e9ef1f6b3724246e57022979c (patch) | |
| tree | cca234a1603c276ff86a42d307933cc811f86c5f | |
| parent | 0a584ba8263e79a3d71c756647f1fd4139c0d12b (diff) | |
| download | packages-05c7ab7466b0dd6e9ef1f6b3724246e57022979c.tar.gz | |
python-aio-mqtt-mod: update to 0.4.0
Add support of building against python 3.12+
Replace imp module with importlib
Full changelog:
https://github.com/devbis/aio-mqtt/compare/0.3.4...0.4.0
Signed-off-by: Ivan Belokobylskiy <belokobylskij@gmail.com>
| -rw-r--r-- | lang/python/python-aio-mqtt-mod/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lang/python/python-aio-mqtt-mod/Makefile b/lang/python/python-aio-mqtt-mod/Makefile index ae553fc44b..1a5eca312d 100644 --- a/lang/python/python-aio-mqtt-mod/Makefile +++ b/lang/python/python-aio-mqtt-mod/Makefile @@ -7,16 +7,19 @@ include $(TOPDIR)/rules.mk PKG_NAME:=python-aio-mqtt-mod -PKG_VERSION:=0.3.4 +PKG_VERSION:=0.4.0 PKG_RELEASE:=1 PYPI_NAME:=aio-mqtt-mod -PKG_HASH:=340184b35771b7eb7982072fcca313213d856638dd7f98b99bda3ab16ba23552 +PYPI_SOURCE_NAME=aio_mqtt_mod +PKG_HASH:=14784b0deedc9e91ef0980046c03cecff685b6e4364b6f3a66d41bca4b98b58f PKG_MAINTAINER:=Quintin Hill <stuff@quintin.me.uk> PKG_LICENSE:=Apache-2.0 PKG_LICENSE_FILES:=LICENSE +PKG_BUILD_DEPENDS:=python-setuptools/host + include ../pypi.mk include $(INCLUDE_DIR)/package.mk include ../python3-package.mk |