Print current Python version along with used reqs file (#48)

This commit was merged in pull request #48.
This commit is contained in:
Oleksandr Chychkan
2021-11-01 21:09:49 -07:00
committed by GitHub
parent f5c2785d90
commit e8c28574ba
+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."