Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/win
diff options
context:
space:
mode:
authorwurstsalat <mailtrash@posteo.de>2023-05-04 18:35:02 +0300
committerwurstsalat <mailtrash@posteo.de>2023-05-05 00:02:51 +0300
commitfc69287162c42bda50604863e6b40d1725f368cc (patch)
tree24f75f1ef74a5afb7e0fac365cfed5e7258b3851 /win
parent9b8b1839d1a5398c46925b1b299ad04177f82de7 (diff)
other: Windows: Fix installing omemo-dr in development environment
Fixes #11490
Diffstat (limited to 'win')
-rwxr-xr-xwin/dev_env.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/win/dev_env.sh b/win/dev_env.sh
index 2d352cd0e..4f4dcd353 100755
--- a/win/dev_env.sh
+++ b/win/dev_env.sh
@@ -44,7 +44,6 @@ function main {
PIP_REQUIREMENTS="\
git+https://dev.gajim.org/gajim/python-nbxmpp.git
-git+https://dev.gajim.org/gajim/omemo-dr.git
python-gnupg
qrcode
css_parser
@@ -52,6 +51,8 @@ sentry-sdk
"
pip3 install precis-i18n
pip3 install $(echo "$PIP_REQUIREMENTS" | tr ["\\n"] [" "])
+# Workaround for https://dev.gajim.org/gajim/gajim/-/issues/11490
+SETUPTOOLS_USE_DISTUTILS=stdlib pip3 install git+https://dev.gajim.org/gajim/omemo-dr.git
}