From 616b7dd6ea22e56fba0b19b9910bea1096713310 Mon Sep 17 00:00:00 2001 From: IMDelewer Date: Tue, 17 Mar 2026 09:40:11 +0300 Subject: [PATCH] ci: install deps from pyproject extras --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9887746..1ee85c2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,7 +25,7 @@ jobs: cache: "pip" - name: Install dependencies - run: pip install -r requirements.txt + run: pip install ".[win10]" - name: Install pyinstaller run: pip install pyinstaller @@ -53,7 +53,7 @@ jobs: cache: "pip" - name: Install dependencies (Win7-compatible) - run: pip install -r requirements-win7.txt + run: pip install ".[win7]" - name: Install pyinstaller run: pip install "pyinstaller==5.13.2" @@ -99,4 +99,4 @@ jobs: draft: false prerelease: false env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}