From 3e09b5c50d74d3e24d55b1b6764df455d34396bf Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Sat, 10 Oct 2020 15:02:54 +0300 Subject: [PATCH] Standardise on Python 3.6. I'm using ElementaryOS which has Python 3.6 as the system Python3. It's a supported Python version, the system packages will be used and everything that runs on that version will run on later versions. --- .travis.yml | 2 +- Documents/Endless/Pipfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index b84debd..a9685f2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ # vim:ff=unix ts=2 sw=2 ai expandtab --- language: python -python: "3.8" +python: "3.6" dist: bionic cache: pip: true diff --git a/Documents/Endless/Pipfile b/Documents/Endless/Pipfile index d349244..9cde8b6 100644 --- a/Documents/Endless/Pipfile +++ b/Documents/Endless/Pipfile @@ -27,7 +27,7 @@ google-auth-httplib2 = "*" google-auth-oauthlib = "*" [requires] -python_version = "3.7" +python_version = "3.6" [pipenv] allow_prereleases = true -- GitLab