From: Trevor Gamblin Date: Tue, 13 Jan 2026 17:57:58 +0000 (-0500) Subject: python3: add new files to compression X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a5fd6d700dde2a5a3ef2c1a721fbe060fa1145f2;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git python3: add new files to compression As of Python 3.14, there is a new top-level compression module that contains the gzip and tarfile modules from previous versions, along with a new _common module. However, for compatibility reasons the project is also leaving a copy of the gzip and tarfile modules in the original positions (to be handled in a future deprecation cycle). Signed-off-by: Trevor Gamblin Signed-off-by: Antonin Godard Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-devtools/python/python3/python3-manifest.json b/meta/recipes-devtools/python/python3/python3-manifest.json index ff84f2d305..78526cd4b7 100644 --- a/meta/recipes-devtools/python/python3/python3-manifest.json +++ b/meta/recipes-devtools/python/python3/python3-manifest.json @@ -167,12 +167,18 @@ "files": [ "${libdir}/python${PYTHON_MAJMIN}/gzip.py", "${libdir}/python${PYTHON_MAJMIN}/tarfile.py", + "${libdir}/python${PYTHON_MAJMIN}/compression/gzip.py", + "${libdir}/python${PYTHON_MAJMIN}/compression/tarfile.py", + "${libdir}/python${PYTHON_MAJMIN}/compression/_common/_streams.py", "${libdir}/python${PYTHON_MAJMIN}/zipfile", "${libdir}/python${PYTHON_MAJMIN}/zipfile/_path" ], "cached": [ "${libdir}/python${PYTHON_MAJMIN}/__pycache__/gzip.*.pyc", - "${libdir}/python${PYTHON_MAJMIN}/__pycache__/tarfile.*.pyc" + "${libdir}/python${PYTHON_MAJMIN}/__pycache__/tarfile.*.pyc", + "${libdir}/python${PYTHON_MAJMIN}/compression/__pycache__/gzip.*.pyc", + "${libdir}/python${PYTHON_MAJMIN}/compression/__pycache__/tarfile.*.pyc", + "${libdir}/python${PYTHON_MAJMIN}/compression/_common/__pycache__/_streams.*.pyc" ] }, "core": {