[release] build 'gallery-dl.exe' on Python 3.13 (#6684)

and rename the former Python 3.8 version to 'gallery-dl_x86.exe'.

Currently building with PyInstaller, as I wasn't able to get py2exe to
work in this environment, but the startup times are noticeably longer.

Considering switching to nuitka, maybe even for all standalone builds.
This commit is contained in:
Mike Fährmann
2025-02-01 19:58:51 +01:00
parent ddb2c4d69d
commit 52ac3a7802
2 changed files with 18 additions and 9 deletions

View File

@@ -23,14 +23,14 @@ REPOS = {
BINARIES_STABLE = {
"windows" : "gallery-dl.exe",
"windows_x86": "gallery-dl.exe",
"windows_x64": "gallery-dl.exe",
"windows_x86": "gallery-dl_x86.exe",
"linux" : "gallery-dl.bin",
}
BINARIES_DEV = {
"windows" : "gallery-dl_windows.exe",
"windows_x86": "gallery-dl_windows_x86.exe",
"windows_x64": "gallery-dl_windows.exe",
"windows_x86": "gallery-dl_windows_x86.exe",
"linux" : "gallery-dl_linux",
"macos" : "gallery-dl_macos",
}