Skip to content

Commit 2bd2b4b

Browse files
committed
Release v7.5.4
1 parent fdb50cf commit 2bd2b4b

File tree

2 files changed

+13
-12
lines changed

2 files changed

+13
-12
lines changed

.github/workflows/build.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -37,22 +37,23 @@ jobs:
3737
path: dist/TinyTouch-${{ github.ref_name }}-linux-x64.zip
3838

3939
build-linux-legacy:
40-
runs-on: ubuntu-20.04
40+
runs-on: ubuntu-latest
41+
container:
42+
image: ubuntu:20.04
4143
if: ${{ !endsWith(github.ref_name, '-legacy') }}
4244
steps:
4345
- uses: actions/checkout@v4
44-
- uses: actions/setup-python@v5
45-
with:
46-
python-version: "3.12"
47-
cache: "pip"
48-
cache-dependency-path: "requirements.txt"
46+
- name: Install system deps
47+
run: |
48+
apt-get update
49+
apt-get install -y python3 python3-pip python3-venv zip
4950
- name: Install deps
5051
run: |
51-
python -m pip install --upgrade pip setuptools wheel
52-
pip install -r requirements.txt
52+
python3 -m pip install --upgrade pip setuptools wheel
53+
pip3 install -r requirements.txt
5354
- name: Build (PyInstaller)
5455
run: |
55-
TINYTOUCH_APP_NAME=TinyTouch-${{ github.ref_name }} python -m PyInstaller TinyTouch.spec
56+
TINYTOUCH_APP_NAME=TinyTouch-${{ github.ref_name }} python3 -m PyInstaller TinyTouch.spec
5657
- name: Package
5758
run: |
5859
cd dist

src/video_model.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,11 @@ def __init__(self, video_path):
6565

6666

6767
if sys.platform.startswith("win"):
68-
self.program_version = "7.5.3 (Windows)"
68+
self.program_version = "7.5.4 (Windows)"
6969
elif sys.platform.startswith("linux"):
70-
self.program_version = "7.5.3 (Linux)"
70+
self.program_version = "7.5.4 (Linux)"
7171
else:
72-
self.program_version = "7.5.3 (Unknown OS)"
72+
self.program_version = "7.5.4 (Unknown OS)"
7373
print("INFO: Program version:", self.program_version)
7474
self.parameter1_name = None
7575
self.parameter2_name = None

0 commit comments

Comments
 (0)