small changes...
main / Explore-Gitea-Actions (push) Failing after 19s

This commit is contained in:
2026-08-14 21:40:10 +01:00
parent cae89f4c19
commit c478d93f65
7 changed files with 196 additions and 15 deletions
+39
View File
@@ -0,0 +1,39 @@
# -*- mode: python ; coding: utf-8 -*-
from PyInstaller.utils.hooks import collect_submodules
a = Analysis(
['taskrunner.py'],
pathex=[],
binaries=[],
datas=[],
hiddenimports=collect_submodules('registry'),
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
noarchive=False,
optimize=0,
)
pyz = PYZ(a.pure)
exe = EXE(
pyz,
a.scripts,
a.binaries,
a.datas,
[],
name='taskrunner',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=True,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
)