1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-22 02:32:33 +01:00

don't include 'toml' package in PyInstaller binary

My own system now has Python 3.11 with native TOML support.
This commit is contained in:
Mike Fährmann 2023-05-14 18:43:37 +02:00
parent 494acabd38
commit 56db930c47
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

View File

@ -59,7 +59,7 @@ build-linux() {
rm -rf "${VENV_PATH}"
python -m virtualenv "${VENV_PATH}"
$VENV_PYTHON -m pip install requests requests[socks] yt-dlp pyyaml toml secretstorage pyinstaller
$VENV_PYTHON -m pip install requests requests[socks] yt-dlp pyyaml secretstorage pyinstaller
$VENV_PYTHON ./scripts/pyinstaller.py
}