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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pyinstaller
pip install pyinstaller==6.21.0

- name: Build executable
working-directory: python
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pyinstaller
pip install pyinstaller==6.21.0

- name: Build executable
working-directory: python
Expand Down
2 changes: 1 addition & 1 deletion python/build_exe.bat
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ if errorlevel 1 (

:: Install PyInstaller if needed
echo [INFO] Checking PyInstaller...
pip install pyinstaller --quiet
pip install pyinstaller==6.21.0 --quiet
if errorlevel 1 (
echo [ERROR] Failed to install PyInstaller
goto :error
Expand Down
9 changes: 6 additions & 3 deletions python/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
python-dateutil>=2.8.0
pillow>=9.0.0
ttkbootstrap>=1.10.0
# Pinned for reproducible, CVE-clean release builds.
# pillow<12.2.0 carries known CVEs (incl. ImageMath.eval RCE CVE-2023-50447,
# libwebp heap overflow CVE-2023-4863); see CVE audit before bumping.
python-dateutil==2.9.0.post0
pillow==12.2.0
ttkbootstrap==1.20.3
Loading