Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-python-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ on:
required: true
type: choice
options:
- 3.12.13
- 3.13.14
- 3.14.6
- 3.12.14
- 3.13.15
- 3.14.7

env:
PYTHON_VERSION: ${{ inputs.python_version || github.event.inputs.python_version }}
Expand Down
22 changes: 19 additions & 3 deletions darwin/ios_patches/3.13/Python.patch
Original file line number Diff line number Diff line change
Expand Up @@ -7284,7 +7284,7 @@ index 0df4751..cf32adf 100755
fi
ac_fn_c_check_func "$LINENO" "sigfillset" "ac_cv_func_sigfillset"
if test "x$ac_cv_func_sigfillset" = xyes
@@ -19363,11 +19547,11 @@ fi
@@ -19376,11 +19560,11 @@ fi

fi

Expand All @@ -7295,6 +7295,15 @@ index 0df4751..cf32adf 100755
# raise an error if used at runtime. Force these symbols off.
-if test "$ac_sys_system" != "iOS" ; then
+if test "$ac_sys_system" != "iOS" -a "$ac_sys_system" != "tvOS" -a "$ac_sys_system" != "visionOS" -a "$ac_sys_system" != "watchOS" ; then
ac_fn_c_check_func "$LINENO" "getentropy" "ac_cv_func_getentropy"
if test "x$ac_cv_func_getentropy" = xyes
then :
@@ -19403,7 +19587,7 @@ fi
# In addition, macOS introduced dup3 and pipe2 in macOS 27, late in the
# lifetime of this version of Python. Rather than adding weaklinking
# support for them, just continue to ignore them.
-if test "$ac_sys_system" != "iOS" -a "$ac_sys_system" != "Darwin"; then
+if test "$ac_sys_system" != "iOS" -a "$ac_sys_system" != "Darwin" -a "$ac_sys_system" != "tvOS" -a "$ac_sys_system" != "visionOS" -a "$ac_sys_system" != "watchOS"; then
ac_fn_c_check_func "$LINENO" "dup3" "ac_cv_func_dup3"
if test "x$ac_cv_func_dup3" = xyes
then :
Expand Down Expand Up @@ -7931,7 +7940,7 @@ index a016a43..698553b 100644
sigfillset siginterrupt sigpending sigrelse sigtimedwait sigwait \
sigwaitinfo snprintf splice strftime strlcpy strsignal symlinkat sync \
sysconf tcgetpgrp tcsetpgrp tempnam timegm times tmpfile \
@@ -5275,14 +5474,22 @@ if test "$MACHDEP" != linux; then
@@ -5275,20 +5474,28 @@ if test "$MACHDEP" != linux; then
AC_CHECK_FUNCS([lchmod])
fi

Expand All @@ -7942,7 +7951,14 @@ index a016a43..698553b 100644
# raise an error if used at runtime. Force these symbols off.
-if test "$ac_sys_system" != "iOS" ; then
+if test "$ac_sys_system" != "iOS" -a "$ac_sys_system" != "tvOS" -a "$ac_sys_system" != "visionOS" -a "$ac_sys_system" != "watchOS" ; then
AC_CHECK_FUNCS([dup3 getentropy getgroups pipe2 system])
AC_CHECK_FUNCS([getentropy getgroups system])
fi
# In addition, macOS introduced dup3 and pipe2 in macOS 27, late in the
# lifetime of this version of Python. Rather than adding weaklinking
# support for them, just continue to ignore them.
-if test "$ac_sys_system" != "iOS" -a "$ac_sys_system" != "Darwin"; then
+if test "$ac_sys_system" != "iOS" -a "$ac_sys_system" != "Darwin" -a "$ac_sys_system" != "tvOS" -a "$ac_sys_system" != "visionOS" -a "$ac_sys_system" != "watchOS"; then
AC_CHECK_FUNCS([dup3 pipe2])
fi

+# tvOS/watchOS have some additional methods that can be found, but not used.
Expand Down
16 changes: 8 additions & 8 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
{
"default_python_version": "3.14",
"dart_bridge_version": "1.7.1",
"dart_bridge_version": "1.8.0",
"pythons": {
"3.12": {
"full_version": "3.12.13",
"standalone_release_date": "20260623",
"full_version": "3.12.14",
"standalone_release_date": "20260901",
"pyodide_version": "0.27.7",
"pyodide_platform_tag": "pyodide-2024.0-wasm32",
"android_abis": ["arm64-v8a", "x86_64", "armeabi-v7a"],
"prerelease": false
},
"3.13": {
"full_version": "3.13.14",
"standalone_release_date": "20260623",
"full_version": "3.13.15",
"standalone_release_date": "20260901",
"pyodide_version": "0.29.4",
"pyodide_platform_tag": "pyemscripten-2025.0-wasm32",
"android_abis": ["arm64-v8a", "x86_64", "armeabi-v7a"],
"prerelease": false
},
"3.14": {
"full_version": "3.14.6",
"standalone_release_date": "20260623",
"pyodide_version": "314.0.3",
"full_version": "3.14.7",
"standalone_release_date": "20260901",
"pyodide_version": "314.0.6",
"pyodide_platform_tag": "pyemscripten-2026.0-wasm32",
"android_abis": ["arm64-v8a", "x86_64", "armeabi-v7a"],
"prerelease": false
Expand Down
Loading