Skip to content

Commit 585f8a5

Browse files
committed
try again with latest ubuntu 24.04
1 parent 0beea2e commit 585f8a5

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

keyboard.spec

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# -*- mode: python ; coding: utf-8 -*-
2+
3+
4+
a = Analysis(
5+
['keyboard.py'],
6+
pathex=[],
7+
binaries=[],
8+
datas=[('data/style.css', './data')],
9+
hiddenimports=[],
10+
hookspath=[],
11+
hooksconfig={
12+
'gi': {
13+
'module-versions': {
14+
'Gtk': '4.0'
15+
}
16+
}
17+
},
18+
runtime_hooks=[],
19+
excludes=['pytest'],
20+
noarchive=False,
21+
optimize=0,
22+
)
23+
pyz = PYZ(a.pure)
24+
25+
exe = EXE(
26+
pyz,
27+
a.scripts,
28+
a.binaries,
29+
a.datas,
30+
[],
31+
name='keyboard',
32+
debug=False,
33+
bootloader_ignore_signals=False,
34+
strip=False,
35+
upx=True,
36+
upx_exclude=[],
37+
runtime_tmpdir=None,
38+
console=False,
39+
disable_windowed_traceback=False,
40+
argv_emulation=False,
41+
target_arch=None,
42+
codesign_identity=None,
43+
entitlements_file=None,
44+
)

0 commit comments

Comments
 (0)