diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2020-04-13 13:26:20 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2020-04-13 13:26:24 -0700 |
commit | 3993e88eb233669a3d31abecf2156c2921bcc49a (patch) | |
tree | beaf68e15a7c7ce7124ade5e38f6acaad11d98e5 /python/Pipfile | |
parent | d842983d55fd13b4a006a3caa384e68c70ce998c (diff) | |
download | fatcat-3993e88eb233669a3d31abecf2156c2921bcc49a.tar.gz fatcat-3993e88eb233669a3d31abecf2156c2921bcc49a.zip |
pipenv: switch from python3.5 to python3.7
Also updates dependencies.
Diffstat (limited to 'python/Pipfile')
-rw-r--r-- | python/Pipfile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/python/Pipfile b/python/Pipfile index a2ce14e1..1bcb55cd 100644 --- a/python/Pipfile +++ b/python/Pipfile @@ -61,7 +61,6 @@ zipp = "<2.0.0" [requires] # Python 3.5 is the bundled (system) version of python for Ubuntu 16.04 -# (Xenial), currently the default on Internet Archive production VMs, as well -# as Debian stable (stretch). Will probably bump to 3.6 in early 2019 when -# updating both of these environments. -python_version = "3.5" +# (Xenial), currently the default on Internet Archive production VMs. But we +# install Python 3.7 using an external package repository. +python_version = "3.7" |