fix bugs in translation update script requirements

this allows the translation script to properly run stand alone
This commit is contained in:
Daniel Markstedt
2025-12-30 15:58:42 +01:00
parent 363760f2cc
commit ba8035367d
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -7,6 +7,7 @@ exceptiongroup==1.3.1
flake8==7.3.0
idna==3.11
iniconfig==2.0.0
jinja2==3.1.6
MarkupSafe==3.0.3
mccabe==0.7.0
mypy-extensions==1.1.0
+1 -1
View File
@@ -11,7 +11,7 @@ if ! test -e venv; then
source venv/bin/activate
echo "Installing requirements-dev.txt"
pip3 install wheel
pip3 install -r requirements.txt
pip3 install -r requirements-dev.txt
fi
source venv/bin/activate