From c82355d1f14904e3d574da9fa1ea9227e8b8ea13 Mon Sep 17 00:00:00 2001 From: IMDelewer Date: Thu, 19 Mar 2026 13:16:59 +0000 Subject: [PATCH] ci: update pipeline to support new pyproject.toml --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0721ad9..827ebc6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,7 +30,7 @@ jobs: cache: "pip" - name: Install dependencies - run: pip install ".[win10]" + run: pip install . - name: Install pyinstaller run: pip install "pyinstaller==6.13.0" @@ -61,7 +61,7 @@ jobs: cache: "pip" - name: Install dependencies (Win7-compatible) - run: pip install ".[win7]" + run: pip install . - name: Install pyinstaller run: pip install "pyinstaller==5.13.2" @@ -142,7 +142,7 @@ jobs: -w wheelhouse/universal2 python3.12 -m pip install --no-deps wheelhouse/universal2/*.whl - python3.12 -m pip install ".[macos]" + python3.12 -m pip install . python3.12 -m pip install pyinstaller==6.13.0 - name: Create macOS icon from ICO @@ -244,7 +244,7 @@ jobs: - name: Install dependencies run: | .venv/bin/pip install --upgrade pip - .venv/bin/pip install ".[linux]" + .venv/bin/pip install . .venv/bin/pip install "pyinstaller==6.13.0" - name: Build binary with PyInstaller