|
30 | 30 | run: > |
31 | 31 | pyinstaller -i icons/icon.ico -F -w --clean --noupx --log-level WARN |
32 | 32 | --exclude-module tkinter |
| 33 | + --exclude-module turtle |
33 | 34 | --exclude-module unittest |
34 | 35 | --exclude-module pydoc |
| 36 | + --exclude-module xml |
| 37 | + --exclude-module xmlrpc |
| 38 | + --exclude-module sqlite3 |
| 39 | + --exclude-module csv |
| 40 | + --exclude-module ftplib |
| 41 | + --exclude-module imaplib |
| 42 | + --exclude-module smtplib |
| 43 | + --exclude-module poplib |
| 44 | + --exclude-module telnetlib |
| 45 | + --exclude-module nntplib |
| 46 | + --exclude-module pdb |
| 47 | + --exclude-module doctest |
| 48 | + --exclude-module ensurepip |
| 49 | + --exclude-module distutils |
35 | 50 | --exclude-module multiprocessing |
36 | 51 | --exclude-module lib2to3 |
37 | 52 | --exclude-module PySide6.QtHelp |
|
52 | 67 | --exclude-module PySide6.QtSvg |
53 | 68 | --exclude-module PySide6.QtSvgWidgets |
54 | 69 | --exclude-module PySide6.QtUiTools |
55 | | - main.py |
56 | 70 |
|
57 | 71 | - name: Upload package |
58 | 72 | uses: actions/upload-artifact@v4 |
@@ -119,8 +133,23 @@ jobs: |
119 | 133 | run: > |
120 | 134 | pyinstaller -i icons/icon.icns -F -w --clean --log-level WARN |
121 | 135 | --exclude-module tkinter |
| 136 | + --exclude-module turtle |
122 | 137 | --exclude-module unittest |
123 | 138 | --exclude-module pydoc |
| 139 | + --exclude-module xml |
| 140 | + --exclude-module xmlrpc |
| 141 | + --exclude-module sqlite3 |
| 142 | + --exclude-module csv |
| 143 | + --exclude-module ftplib |
| 144 | + --exclude-module imaplib |
| 145 | + --exclude-module smtplib |
| 146 | + --exclude-module poplib |
| 147 | + --exclude-module telnetlib |
| 148 | + --exclude-module nntplib |
| 149 | + --exclude-module pdb |
| 150 | + --exclude-module doctest |
| 151 | + --exclude-module ensurepip |
| 152 | + --exclude-module distutils |
124 | 153 | --exclude-module multiprocessing |
125 | 154 | --exclude-module curses |
126 | 155 | --exclude-module lib2to3 |
|
0 commit comments