diff options
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2018-07-23 22:34:13 +0200 |
---|---|---|
committer | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2018-07-23 22:34:13 +0200 |
commit | 2fc660db78c35dc13fe8a116e51f7f978c6292e9 (patch) | |
tree | 485ef171a9bcf670cdc21eda1aec8eb1ed15d2e4 | |
parent | f1e4cdc2a8a86726172ad0fccf46c9e9157c6790 (diff) | |
download | poezio-2fc660db78c35dc13fe8a116e51f7f978c6292e9.tar.gz poezio-2fc660db78c35dc13fe8a116e51f7f978c6292e9.tar.bz2 poezio-2fc660db78c35dc13fe8a116e51f7f978c6292e9.tar.xz poezio-2fc660db78c35dc13fe8a116e51f7f978c6292e9.zip |
update.sh: Check for Python 3.5+ instead of 3.4+.
-rwxr-xr-x | update.sh | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -23,7 +23,7 @@ command -v "$POEZIO_PYTHON" > /dev/null 2>&1 || { } $POEZIO_PYTHON -c 'import venv' &> /dev/null || { - echo "'$POEZIO_PYTHON' venv module not found. Check that you have python (>= 3.4) installed," + echo "'$POEZIO_PYTHON' venv module not found. Check that you have python (>= 3.5) installed," exit 1 } @@ -43,7 +43,7 @@ then . "$POEZIO_VENV/bin/activate" echo 'Updating the in-venv pip' pip install --upgrade pip - python3 -c 'import sys;(print("Python 3.4 or newer is required") and exit(1)) if sys.version_info < (3, 4) else exit(0)' || exit 1 + python3 -c 'import sys;(print("Python 3.5 or newer is required") and exit(1)) if sys.version_info < (3, 5) else exit(0)' || exit 1 echo 'Updating the poezio dependencies' pip install -r requirements.txt --upgrade echo 'Updating the poezio plugin dependencies' @@ -55,7 +55,7 @@ else . "$POEZIO_VENV/bin/activate" cd "$POEZIO_VENV" # needed to download slixmpp inside the venv - python3 -c 'import sys;(print("Python 3.4 or newer is required") and exit(1)) if sys.version_info < (3, 4) else exit(0)' || exit 1 + python3 -c 'import sys;(print("Python 3.5 or newer is required") and exit(1)) if sys.version_info < (3, 5) else exit(0)' || exit 1 echo 'Installing the poezio dependencies using pip' pip install -r "../requirements.txt" |