aboutsummaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2018-02-24 14:36:27 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2018-02-24 14:36:27 +0100
commit0166b19f9ace8c8684dff2ca4b0291a6825829f0 (patch)
treef39266da095ee6fb8924d01db767b8c88b96f868 /install.sh
parentAdded Pipfile. (diff)
downloadnewspipe-0166b19f9ace8c8684dff2ca4b0291a6825829f0.tar.gz
newspipe-0166b19f9ace8c8684dff2ca4b0291a6825829f0.tar.bz2
newspipe-0166b19f9ace8c8684dff2ca4b0291a6825829f0.zip
With pipenv the file runtime.txt is useless.
Diffstat (limited to 'install.sh')
-rw-r--r--install.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/install.sh b/install.sh
index a561979d..43ddd96a 100644
--- a/install.sh
+++ b/install.sh
@@ -13,7 +13,7 @@ sudo apt-get install -y libssl-dev openssl > /dev/null # for pip
-PYTHON_VERSION=3.6.1
+PYTHON_VERSION=3.6.4
echo "Installation of Python..."
if [ "$1" == postgres ]; then
sudo apt-get install -y libpq-dev > /dev/null
bgstack15