python-execnet: bump to 2.1.2
authorAlexandru Ardelean <redacted>
Wed, 1 Apr 2026 11:49:18 +0000 (14:49 +0300)
committerAlexandru Ardelean <redacted>
Wed, 1 Apr 2026 19:37:48 +0000 (22:37 +0300)
Changelog: https://github.com/pytest-dev/execnet/blob/main/CHANGELOG
Signed-off-by: Alexandru Ardelean <redacted>
lang/python/python-execnet/Makefile
lang/python/python-execnet/test.sh [new file with mode: 0755]

index b4e331af8ad936d5cd03f03d78d12b8c404b94da..b0a3503c118b1a2f7d5105d57e53ef01be2ceb3d 100644 (file)
@@ -8,11 +8,11 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=python-execnet
-PKG_VERSION:=2.0.2
+PKG_VERSION:=2.1.2
 PKG_RELEASE:=1
 
 PYPI_NAME:=execnet
-PKG_HASH:=cc59bc4423742fd71ad227122eb0dd44db51efb3dc4095b45ac9a08c770096af
+PKG_HASH:=63d83bfdd9a23e35b9c6a3261412324f964c2ec8dcd8d3c6916ee9373e0befcd
 
 PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
 PKG_LICENSE:=MIT
diff --git a/lang/python/python-execnet/test.sh b/lang/python/python-execnet/test.sh
new file mode 100755 (executable)
index 0000000..aaa95d4
--- /dev/null
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+[ "$1" = python3-execnet ] || exit 0
+
+python3 - << 'EOF'
+
+import execnet
+
+# Verify basic module attributes exist
+assert hasattr(execnet, 'makegateway')
+assert hasattr(execnet, 'MultiChannel')
+assert hasattr(execnet, 'Group')
+assert execnet.__version__
+
+EOF
git clone https://git.99rst.org/PROJECT