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 <[email protected]> --- .../recipes-devtools/python/python3/python3-manifest.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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": { -- 2.52.0
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#229287): https://lists.openembedded.org/g/openembedded-core/message/229287 Mute This Topic: https://lists.openembedded.org/mt/117247416/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
