From 31bbcaa89ca3de09c29e05aa6bf5bce794105bcf Mon Sep 17 00:00:00 2001 From: CyberMind-FR Date: Sat, 10 Jan 2026 15:03:21 +0100 Subject: [PATCH] fix: Use mitmproxy 10.4.2 for Python 3.10+ compatibility mitmproxy 11.x requires Python 3.12 which is not available on OpenWrt. Version 10.4.2 is the last stable release supporting Python 3.10+. Co-Authored-By: Claude Opus 4.5 --- package/secubox/secubox-app-mitmproxy/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package/secubox/secubox-app-mitmproxy/Makefile b/package/secubox/secubox-app-mitmproxy/Makefile index 0c90c54f..1a97d648 100644 --- a/package/secubox/secubox-app-mitmproxy/Makefile +++ b/package/secubox/secubox-app-mitmproxy/Makefile @@ -10,8 +10,8 @@ include $(TOPDIR)/rules.mk PKG_NAME:=secubox-app-mitmproxy -PKG_VERSION:=11.1.3 -PKG_RELEASE:=2 +PKG_VERSION:=10.4.2 +PKG_RELEASE:=1 PKG_MAINTAINER:=CyberMind PKG_LICENSE:=MIT @@ -90,7 +90,7 @@ define Package/secubox-app-mitmproxy/postinst # Install mitmproxy via pip if not already installed if ! python3 -c "import mitmproxy" 2>/dev/null; then echo "Installing mitmproxy via pip..." - pip3 install --no-cache-dir mitmproxy==11.1.3 + pip3 install --no-cache-dir mitmproxy==10.4.2 fi # Generate CA certificate if not exists