diff --git a/python/web/requirements-dev.txt b/python/web/requirements-dev.txt index 23dfcde953..5a4f9430d2 100644 --- a/python/web/requirements-dev.txt +++ b/python/web/requirements-dev.txt @@ -1,3 +1,4 @@ +babel==2.17.0 black==25.11.0 certifi==2024.7.4 charset-normalizer==3.3.2 diff --git a/python/web/translation_update.sh b/python/web/translation_update.sh index 2a0433609e..2aee481c68 100755 --- a/python/web/translation_update.sh +++ b/python/web/translation_update.sh @@ -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