diff options
| author | Lex Neva <lexelby@users.noreply.github.com> | 2018-09-22 12:21:45 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-09-22 12:21:45 -0400 |
| commit | b88821bcfe8341cc510559376bdaac82e03259c5 (patch) | |
| tree | 78e1e2f1553f6150e30d47a5315af2c6c3854859 | |
| parent | efc2816f3c1bee81e5ff4c5f4796e290fd0a70d0 (diff) | |
| parent | bde2314255c184ddc1344c34ffd7bf12383b1fc3 (diff) | |
Merge pull request #325 from inkstitch/lexelby/fix-mac
always use pyinstaller 3.3.1
| -rw-r--r-- | .travis.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 52a1e1fc..060e5581 100644 --- a/.travis.yml +++ b/.travis.yml @@ -93,8 +93,8 @@ install: wget -q https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi --output-document=python.msi wine msiexec /i python.msi /qn TARGETDIR=C:\\Python - wine c:\\Python\\python.exe c:\\Python\\scripts\\pip.exe install pyinstaller --upgrade - wine c:\\Python\\python.exe c:\\Python\\scripts\\pip.exe install setuptools --upgrade + wine c:\\Python\\python.exe c:\\Python\\scripts\\pip.exe install --upgrade pyinstaller==3.3.1 + wine c:\\Python\\python.exe c:\\Python\\scripts\\pip.exe install --upgrade setuptools wget -q https://github.com/lexelby/inkstitch-build-objects/releases/download/v1.0.0/Shapely-1.6.3-cp27-cp27m-win32.whl wine c:\\Python\\python.exe c:\\Python\\scripts\\pip.exe install Shapely-1.6.3-cp27-cp27m-win32.whl @@ -125,7 +125,7 @@ install: source venv/bin/activate pip install -r requirements.txt - pip install pyinstaller + pip install pyinstaller==3.3.1 set +x elif [ -n "$LINT" ]; then pip install flake8 |
