Bundle also json and xml extras into windows exe (fixes: #1903)

This commit is contained in:
Dmitri Bogomolov 2021-12-13 14:52:29 +02:00
parent 0133fe7907
commit 7740d54ce7
Signed by untrusted user: g1itch
GPG Key ID: 720A756F18DEED13

View File

@ -112,7 +112,7 @@ function install_pip_depends()
{ {
cd "${BASE_DIR}" || exit 1 cd "${BASE_DIR}" || exit 1
echo "Installing pip depends" echo "Installing pip depends"
wine python -m pip install msgpack-python .[qrcode] .[tor] wine python -m pip install msgpack-python .[json] .[qrcode] .[tor] .[xml]
python setup.py egg_info python setup.py egg_info
} }