Print current Python version along with used reqs file #48

Merged
chychkan merged 1 commits from print-python-version into master 2021-11-02 05:09:49 +01:00
+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."