From e7aac91d51ace1774b9e09cb4d6ec54382332d35 Mon Sep 17 00:00:00 2001 From: Quality App Developer Date: Thu, 5 Feb 2026 09:18:28 +0200 Subject: [PATCH] Fix Windows build: remove pycups (Linux-only) and use Windows requirements --- .github/workflows/build-windows.yml | 3 +-- requirements_windows.txt | 5 +++++ 2 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 requirements_windows.txt diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index f454254..f589c03 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -25,8 +25,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install -r requirements_gui.txt - pip install pyinstaller + pip install -r requirements_windows.txt - name: Build executable with PyInstaller run: python build_exe.py diff --git a/requirements_windows.txt b/requirements_windows.txt new file mode 100644 index 0000000..c7d60ea --- /dev/null +++ b/requirements_windows.txt @@ -0,0 +1,5 @@ +python-barcode +pillow +kivy +reportlab +pyinstaller