Make it possible to run translation_update.sh on macOS

Uses requirements-dev.txt so that the script can be used on platforms that cannot run f.e. bjoern
This commit is contained in:
Daniel Markstedt
2025-11-25 07:16:22 +01:00
parent db31ba291f
commit aad73594a4
2 changed files with 3 additions and 2 deletions
+1
View File
@@ -1,3 +1,4 @@
babel==2.17.0
black==25.11.0
certifi==2024.7.4
charset-normalizer==3.3.2
+2 -2
View File
@@ -5,11 +5,11 @@ cd "$(dirname "$0")"
# Create the venv if it doesn't exist
if ! test -e venv; then
echo "Creating python venv for PiSCSI-Web"
echo "Creating python venv for PiSCSI-Web development"
python3 -m venv venv
echo "Activating venv"
source venv/bin/activate
echo "Installing requirements.txt"
echo "Installing requirements-dev.txt"
pip3 install wheel
pip3 install -r requirements.txt
fi