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

Tweak pyinstaller version selection

parent f1cf40a1
No related branches found
No related tags found
No related merge requests found
...@@ -22,7 +22,15 @@ source .env/bin/activate ...@@ -22,7 +22,15 @@ source .env/bin/activate
curl -k https://ssl.tiker.net/software/ez_setup.py | python - curl -k https://ssl.tiker.net/software/ez_setup.py | python -
curl -k https://gitlab.tiker.net/inducer/pip/raw/7.0.3/contrib/get-pip.py | python - curl -k https://gitlab.tiker.net/inducer/pip/raw/7.0.3/contrib/get-pip.py | python -
pip install pyinstaller==3.0 packaging pip install packaging
PYTHON_VER=$($PYTHON_EXE -c 'import sys; print(".".join(str(s) for s in sys.version_info[:2]))')
if test "$PYTHON_VER" = "2.6"; then
pip install pyinstaller==2.1
else
pip install pyinstaller
fi
git clone --recursive git://github.com/inducer/loopy git clone --recursive git://github.com/inducer/loopy
cd loopy cd loopy
......
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