diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2018-02-24 14:36:27 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2018-02-24 14:36:27 +0100 |
commit | 0166b19f9ace8c8684dff2ca4b0291a6825829f0 (patch) | |
tree | f39266da095ee6fb8924d01db767b8c88b96f868 | |
parent | Added Pipfile. (diff) | |
download | newspipe-0166b19f9ace8c8684dff2ca4b0291a6825829f0.tar.gz newspipe-0166b19f9ace8c8684dff2ca4b0291a6825829f0.tar.bz2 newspipe-0166b19f9ace8c8684dff2ca4b0291a6825829f0.zip |
With pipenv the file runtime.txt is useless.
-rw-r--r-- | Pipfile | 2 | ||||
-rw-r--r-- | install.sh | 2 | ||||
-rw-r--r-- | runtime.txt | 1 |
3 files changed, 3 insertions, 2 deletions
@@ -4,6 +4,8 @@ url = "https://pypi.python.org/simple" verify_ssl = true name = "pypi" +[requires] +python_version = "3.6.4" [packages] @@ -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 diff --git a/runtime.txt b/runtime.txt deleted file mode 100644 index 02d0df5e..00000000 --- a/runtime.txt +++ /dev/null @@ -1 +0,0 @@ -python-3.6.3 |