force pip upgrades

This commit is contained in:
Jay Lee
2019-08-15 14:50:23 -04:00
parent ed221b0d7b
commit 68d8e46b4c
4 changed files with 4 additions and 8 deletions

View File

@@ -114,7 +114,6 @@ else
fi
echo "Upgrading pip packages..."
$pip freeze > upgrades.txt
$pip install --upgrade -r upgrades.txt
$pip list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 $pip install -U
$pip install --upgrade -r src/requirements.txt
$pip install --upgrade pyinstaller

View File

@@ -65,7 +65,6 @@ cd $whereibelong
export PATH=/usr/local/opt/python/libexec/bin:$PATH
$pip install --upgrade pip
$pip freeze > upgrades.txt
$pip install --upgrade -r upgrades.txt
$pip list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 $pip install -U
$pip install --upgrade -r src/requirements.txt
$pip install --upgrade pyinstaller

View File

@@ -21,8 +21,7 @@ until cinst -y wixtoolset; do echo "trying again..."; done
export PATH=$PATH:/c/Python37/scripts
cd $mypath
pip install --upgrade pip
pip freeze > upgrades.txt
pip install --upgrade -r upgrades.txt
pip list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -U
pip install --upgrade -r src/requirements.txt
#pip install --upgrade pyinstaller

View File

@@ -21,8 +21,7 @@ until cinst -y wixtoolset; do echo "trying again..."; done
export PATH=$PATH:/c/Python37/scripts
cd $mypath
pip install --upgrade pip
pip freeze > upgrades.txt
pip install --upgrade -r upgrades.txt
pip list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -U
pip install --upgrade -r src/requirements.txt
#pip install --upgrade pyinstaller
# Install PyInstaller from source and build bootloader