4 Commits

Author SHA1 Message Date
Yannik Schmidt
597a471949 fix: build unpackaged exe because of windwos defender 2025-04-17 11:53:24 +02:00
Yannik Schmidt
27d32e147b add: sqlalchemy to deps 2025-04-17 11:45:03 +02:00
Yannik Schmidt
ac8e8ad495 fix: add requests to explicit installs 2025-04-17 11:39:16 +02:00
Yannik Schmidt
3368048dd7 fix: pywin32 version in requirements 2025-04-17 11:32:28 +02:00
4 changed files with 4 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ jobs:
pip install -r requirements.txt
- name: Build EXE
run: pyinstaller -F client.py
run: pyinstaller client.py
- name: Archive EXE
run: Compress-Archive -Path dist\ -DestinationPath release.zip

View File

View File

View File

@@ -4,4 +4,6 @@ customtkinter
tqdm
Jinja2
pyyaml
pywin32==<version>; platform_system=="Windows"
pywin32==306; platform_system=="Windows"
requests
sqlalchemy