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

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
}