Skip to content

Commit 6a1181c

Browse files
committed
chore: bump python version to 3.14.2
1 parent 1041fd6 commit 6a1181c

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

src/serious_python/bin/package_command.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ const mobilePyPiUrl = "https://pypi.flet.dev";
1818
const pyodideRootUrl = "https://cdn.jsdelivr.net/pyodide/v0.27.7/full";
1919
const pyodideLockFile = "pyodide-lock.json";
2020

21-
const buildPythonVersion = "3.14.0";
22-
const buildPythonReleaseDate = "20251007";
21+
const buildPythonVersion = "3.14.2";
22+
const buildPythonReleaseDate = "20251209";
2323
const defaultSitePackagesDir = "__pypackages__";
2424
const sitePackagesEnvironmentVariable = "SERIOUS_PYTHON_SITE_PACKAGES";
2525
const flutterPackagesFlutterEnvironmentVariable =

src/serious_python_android/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
group 'com.flet.serious_python_android'
22
version '0.9.6'
33

4-
def python_version = '3.14'
4+
def python_version = '3.14.2'
55

66
buildscript {
77
repositories {

src/serious_python_android/lib/src/gen.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25758,17 +25758,17 @@ const int PY_RELEASE_LEVEL_FINAL = 15;
2575825758

2575925759
const int PY_MAJOR_VERSION = 3;
2576025760

25761-
const int PY_MINOR_VERSION = 12;
25761+
const int PY_MINOR_VERSION = 14;
2576225762

25763-
const int PY_MICRO_VERSION = 3;
25763+
const int PY_MICRO_VERSION = 2;
2576425764

2576525765
const int PY_RELEASE_LEVEL = 15;
2576625766

2576725767
const int PY_RELEASE_SERIAL = 0;
2576825768

25769-
const String PY_VERSION = '3.14.0';
25769+
const String PY_VERSION = '3.14.2';
2577025770

25771-
const int PY_VERSION_HEX = 51249392;
25771+
const int PY_VERSION_HEX = 51249904;
2577225772

2577325773
const int ALIGNOF_LONG = 8;
2577425774

src/serious_python_android/python_ffigen.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ globals:
1414
"^class (\\w+) extends ffi.Union": "final class $1 extends ffi.Union"
1515
headers:
1616
entry-points:
17-
- "/Users/feodor/projects/flet-dev/python-mobile/install/android/arm64-v8a/python-3.12/include/python3.12/Python.h"
17+
- "/Users/feodor/projects/flet-dev/python-mobile/install/android/arm64-v8a/python-3.14/include/python3.14/Python.h"
1818
include-directives:
19-
- "/Users/feodor/projects/flet-dev/python-mobile/install/android/arm64-v8a/python-3.12/include/python3.12/*"
20-
- "/Users/feodor/projects/flet-dev/python-mobile/install/android/arm64-v8a/python-3.12/include/python3.12/internal/*"
21-
- "/Users/feodor/projects/flet-dev/python-mobile/install/android/arm64-v8a/python-3.12/include/python3.12/cpython/*"
19+
- "/Users/feodor/projects/flet-dev/python-mobile/install/android/arm64-v8a/python-3.14/include/python3.14/*"
20+
- "/Users/feodor/projects/flet-dev/python-mobile/install/android/arm64-v8a/python-3.14/include/python3.14/internal/*"
21+
- "/Users/feodor/projects/flet-dev/python-mobile/install/android/arm64-v8a/python-3.14/include/python3.14/cpython/*"
2222
name: "CPython"
2323
llvm-path:
2424
- /opt/homebrew/opt/llvm

0 commit comments

Comments
 (0)