From bf3da5d33ef9d008a7f3e598a0918342c3e92165 Mon Sep 17 00:00:00 2001 From: Markus Zehnder Date: Thu, 24 Apr 2025 18:22:39 +0200 Subject: [PATCH] build: update to Python 3.11.12 and pyinstaller Docker image --- .github/workflows/build.yml | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 10102c7..ee6c3aa 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,7 +16,7 @@ env: HASH_FILENAME: uc-intg-androidtv.hash BUILD_CHANGELOG: build-changelog.md # Python version to use in the builder image. See https://hub.docker.com/r/unfoldedcircle/r2-pyinstaller for possible versions. - PYTHON_VER: 3.11.6-0.2.0 + PYTHON_VER: 3.11.12-0.3.0 jobs: build: diff --git a/README.md b/README.md index 2696ba6..b773b5d 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ docker run --rm --name builder \ --platform=aarch64 \ --user=$(id -u):$(id -g) \ -v "$PWD":/workspace \ - docker.io/unfoldedcircle/r2-pyinstaller:3.11.6 \ + docker.io/unfoldedcircle/r2-pyinstaller:3.11.12 \ bash -c \ "python -m pip install -r requirements.txt && \ pyinstaller --clean --onedir --name intg-androidtv intg-androidtv/driver.py" @@ -88,7 +88,7 @@ On an aarch64 host platform, the build image can be run directly (and much faste docker run --rm --name builder \ --user=$(id -u):$(id -g) \ -v "$PWD":/workspace \ - docker.io/unfoldedcircle/r2-pyinstaller:3.11.6 \ + docker.io/unfoldedcircle/r2-pyinstaller:3.11.12 \ bash -c \ "python -m pip install -r requirements.txt && \ pyinstaller --clean --onedir --name intg-androidtv intg-androidtv/driver.py"