Print current Python version along with used reqs file

This commit is contained in:
Oleksandr Chychkan
2021-11-01 20:57:03 -07:00
parent f5c2785d90
commit 02b4a26ae0
+1 -1
View File
@@ -24,7 +24,7 @@ if [[ ! -z "$version" && -f "requirements_$version.txt" ]]; then
reqs_file="requirements_$version.txt"
fi
echo "Using $reqs_file"
echo "Using $reqs_file for $(python -V)"
pip install -r $reqs_file
echo "Done."