Update python-app.yml

This commit is contained in:
Anthony Samms
2025-10-27 19:37:56 -04:00
parent d65a3b4792
commit a249c8e097

View File

@@ -224,14 +224,15 @@ jobs:
- name: Setup Python
run: uv python install
- name: Force newer Pillow version (Windows)
if: runner.os == 'Windows'
run: |
# Install the latest pre-release Pillow which should have Python 3.14 support
uv pip install --upgrade --pre pillow
- name: Install Dependencies
run: |
uv sync --no-install-project
# Install moviepy without its pinned dependencies
uv pip install moviepy --no-deps
# Then install dependencies manually with newer Pillow
uv pip install decorator imageio imageio-ffmpeg numpy proglog python-dotenv
uv pip install --pre pillow
# Now install the rest of your project
uv sync
- name: Install Nuitka