From 7740d54ce7bbb2f26674298a283804be79d55af9 Mon Sep 17 00:00:00 2001 From: Dmitri Bogomolov <4glitch@gmail.com> Date: Mon, 13 Dec 2021 14:52:29 +0200 Subject: [PATCH] Bundle also json and xml extras into windows exe (fixes: #1903) --- buildscripts/winbuild.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildscripts/winbuild.sh b/buildscripts/winbuild.sh index 5a59222b..66a2f7aa 100755 --- a/buildscripts/winbuild.sh +++ b/buildscripts/winbuild.sh @@ -112,7 +112,7 @@ function install_pip_depends() { cd "${BASE_DIR}" || exit 1 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 }