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-06-15 10:28:21 +0300
committerwurstsalat <mailtrash@posteo.de>2023-06-15 10:28:21 +0300
commitd5958fd8dfda07d89f16232760dc30c1440cba94 (patch)
tree6588e25bcf1a0ac862a2d4d812c3b1c5df5d13f5 /win
parent2b1766d619664c144ad10d8ef3c80c7392a3d56e (diff)
other: Install pyGObject-stubs in Windows dev env and always upgrade pip installs
Diffstat (limited to 'win')
-rwxr-xr-xwin/dev_env.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/win/dev_env.sh b/win/dev_env.sh
index 4f4dcd353..00093f2ac 100755
--- a/win/dev_env.sh
+++ b/win/dev_env.sh
@@ -44,15 +44,16 @@ function main {
PIP_REQUIREMENTS="\
git+https://dev.gajim.org/gajim/python-nbxmpp.git
+pygobject-stubs --no-cache-dir --config-settings=config=Gtk3,Gdk3,GtkSource4
python-gnupg
qrcode
css_parser
sentry-sdk
"
-pip3 install precis-i18n
-pip3 install $(echo "$PIP_REQUIREMENTS" | tr ["\\n"] [" "])
+pip3 install --upgrade precis-i18n
+pip3 install --upgrade $(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
+SETUPTOOLS_USE_DISTUTILS=stdlib pip3 install --upgrade git+https://dev.gajim.org/gajim/omemo-dr.git
}