diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2020-12-11 12:32:06 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2021-01-05 12:47:10 -0800 |
commit | 033fb23b0ce073993552bdd4d7e2cb59d39157f8 (patch) | |
tree | a751de5e9a9ec202344e553caa710497e4f33a16 /python/Pipfile | |
parent | ad368007881bac4a060de6915fab609d5631e60c (diff) | |
download | fatcat-033fb23b0ce073993552bdd4d7e2cb59d39157f8.tar.gz fatcat-033fb23b0ce073993552bdd4d7e2cb59d39157f8.zip |
pipenv: switch to python3.8 (and re-build lock)
This commit has *only* the pipenv change from python3.7 -> python3.8 and
lockfile update.
Diffstat (limited to 'python/Pipfile')
-rw-r--r-- | python/Pipfile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/python/Pipfile b/python/Pipfile index 87773d5a..fd9e9b6f 100644 --- a/python/Pipfile +++ b/python/Pipfile @@ -59,7 +59,8 @@ toml = ">=0.10" fuzzycat = "==0.1.9" [requires] -# We install Python 3.7 using a PPA (deadsnakes) on Internet Archive cluster -# machines, which as of Spring 2020 are still running Ubuntu Xenial (16.04), -# which has a system default of Python 3.5. -python_version = "3.7" +# As of Fall 2020, Internet Archive cluster VMs are split between Ubuntu Xenial +# (16.04) and Focal (20.04). Default python version for xenial is 3.5, but we +# backport python 3.7 and 3.8 using a PPA (deadsnakes). Default on Focal is +# python 3.8, which we hope to stick with for at least a couple years. +python_version = "3.8" |