From 21e5f4396564edb596fd470210390e18ede731f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Sat, 25 Jan 2025 21:01:18 +0100 Subject: [PATCH] other: Update dev_env.sh --- scripts/dev_env.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/dev_env.sh b/scripts/dev_env.sh index 1ddc066..52ba180 100755 --- a/scripts/dev_env.sh +++ b/scripts/dev_env.sh @@ -2,7 +2,10 @@ echo -e "\e[32mCreate virtualenv\e[0m" python -m venv .venv source .venv/bin/activate echo -e "\e[32mInstall dependencies into virtualenv\e[0m" -PYGOBJECT_STUB_CONFIG=Gtk3,Gdk3,Soup3,GtkSource4 pip install "rich" "ruff>=0.3.2" "codespell[toml]>=2.2.6" "isort>=5.13.2" "PyGObject-stubs @ git+https://github.com/pygobject/pygobject-stubs.git" "gajim @ git+https://dev.gajim.org/gajim/gajim.git" +pip install "PyGObject-stubs @ git+https://github.com/pygobject/pygobject-stubs.git" +pip install "gajim @ git+https://dev.gajim.org/gajim/gajim.git" +pip install pre-commit +pre-commit install deactivate echo -e "\e[32mFinshed\e[0m" echo -e "\e[34mUse 'source .venv/bin/activate' to activate the virtualenv\e[0m"