ci: install deps from pyproject extras

This commit is contained in:
IMDelewer 2026-03-17 09:40:11 +03:00
parent 5935568991
commit 616b7dd6ea
1 changed files with 3 additions and 3 deletions

View File

@ -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 }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}