From 22c48e2de2852e447c748adc71e719b11297a555 Mon Sep 17 00:00:00 2001 From: Hood Chatham Date: Fri, 20 Feb 2026 11:36:54 +0100 Subject: [PATCH 1/2] PEP 783: Use Python major minor version instead of year in ABI Thanks Yhg1s for the suggestion --- peps/pep-0783.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/peps/pep-0783.rst b/peps/pep-0783.rst index 845c9e69557..7fd2b885c94 100644 --- a/peps/pep-0783.rst +++ b/peps/pep-0783.rst @@ -86,10 +86,10 @@ The platform tags will take the form: .. code-block:: text - pyodide_${YEAR}_${PATCH}_wasm32 + pyodide_${PYMAJORMINOR}_${PATCH}_wasm32 Each one of these will be used with a specified Python version. For example, the -platform tag ``pyodide_2025_0`` will be used with Python 3.13. +platform tag ``pyodide_314_0`` will be used with Python 3.14. Emscripten Wheel ABI -------------------- From d6e80ec94a07229c5a5de8c85419f86670f131a6 Mon Sep 17 00:00:00 2001 From: Hood Chatham Date: Fri, 20 Feb 2026 16:12:29 +0100 Subject: [PATCH 2/2] apply hugovk's suggestion --- peps/pep-0783.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/peps/pep-0783.rst b/peps/pep-0783.rst index 7fd2b885c94..fe45e81201b 100644 --- a/peps/pep-0783.rst +++ b/peps/pep-0783.rst @@ -86,7 +86,7 @@ The platform tags will take the form: .. code-block:: text - pyodide_${PYMAJORMINOR}_${PATCH}_wasm32 + pyodide_${PYTHON_MAJOR_MINOR}_${PATCH}_wasm32 Each one of these will be used with a specified Python version. For example, the platform tag ``pyodide_314_0`` will be used with Python 3.14.