From a249c8e097dc450e943e542c81d1ecf0cd324e71 Mon Sep 17 00:00:00 2001 From: Anthony Samms Date: Mon, 27 Oct 2025 19:37:56 -0400 Subject: [PATCH] Update python-app.yml --- .github/workflows/python-app.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 5f04f3f..a0ab38c 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -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