Skip to content
Snippets Groups Projects
Commit 706b47aa authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Fix CI script for Python version match

parent 6c041111
No related branches found
No related tags found
No related merge requests found
Pipeline #
...@@ -57,7 +57,7 @@ export PATH=`pwd`/.env/local/bin:$PATH ...@@ -57,7 +57,7 @@ export PATH=`pwd`/.env/local/bin:$PATH
PIP="${PY_EXE} $(which pip)" PIP="${PY_EXE} $(which pip)"
grep -v dnspython requirements.txt > req.txt grep -v dnspython requirements.txt > req.txt
if [[ "$PY_EXE" = "python2*" ]]; then if [[ "$PY_EXE" = python2* ]]; then
$PIP install dnspython $PIP install dnspython
else else
$PIP install dnspython3 $PIP install dnspython3
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment