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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.12-0.3.0
PYTHON_VER: 3.11.13-0.4.0

jobs:
test:
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased
_Changes in the next release_

### Changed
- Update the embedded Python runtime to 3.11.13.
- Enabled GitHub dependabot.

### Fixed
- qemu installation instructions.

---

## v0.7.4 - 2025-05-15
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ docker run --rm --name builder \
--platform=aarch64 \
--user=$(id -u):$(id -g) \
-v "$PWD":/workspace \
docker.io/unfoldedcircle/r2-pyinstaller:3.11.12 \
docker.io/unfoldedcircle/r2-pyinstaller:3.11.13 \
bash -c \
"python -m pip install -r requirements.txt && \
pyinstaller --clean --onedir --name intg-androidtv src/driver.py"
Expand All @@ -103,7 +103,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.12 \
docker.io/unfoldedcircle/r2-pyinstaller:3.11.13 \
bash -c \
"python -m pip install -r requirements.txt && \
pyinstaller --clean --onedir --name intg-androidtv src/driver.py"
Expand Down