From 394cbfc98a333dd1d4db35fb69379c72c30337f3 Mon Sep 17 00:00:00 2001 From: Damien George Date: Wed, 11 Sep 2024 14:03:52 +1000 Subject: [PATCH] base64: Remove struct dependency from manifest. This base64 library only uses `struct.unpack` which is available in the built-in `struct` module, so no need for the micropython-lib extras. Signed-off-by: Damien George --- python-stdlib/base64/manifest.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/python-stdlib/base64/manifest.py b/python-stdlib/base64/manifest.py index 613d3bc62..9e1b31751 100644 --- a/python-stdlib/base64/manifest.py +++ b/python-stdlib/base64/manifest.py @@ -1,6 +1,5 @@ -metadata(version="3.3.5") +metadata(version="3.3.6") require("binascii") -require("struct") module("base64.py")