aboutsummaryrefslogtreecommitdiffstats
path: root/Pipfile
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2020-12-07 18:41:04 -0800
committerBryan Newbold <bnewbold@archive.org>2021-01-05 14:29:21 -0800
commitd0230c61172a77e43111fce07489bd86ae3ad39c (patch)
treea1d8f82c5e29e6760a2962ab81ce3e46ad15866c /Pipfile
parent1ae59a69133f48da19c97f4068c6154690c657f6 (diff)
downloadfatcat-scholar-d0230c61172a77e43111fce07489bd86ae3ad39c.tar.gz
fatcat-scholar-d0230c61172a77e43111fce07489bd86ae3ad39c.zip
switch project to python3.8 (and rebuild Pipefile.lock)
mypy wasn't working correctly unless we explicitly depend on typing_extensions. This is too bad as python 3.8 presumably has most of hte "newer" extension types anyways.
Diffstat (limited to 'Pipfile')
-rw-r--r--Pipfile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Pipfile b/Pipfile
index 2fec268..9cfd644 100644
--- a/Pipfile
+++ b/Pipfile
@@ -32,6 +32,8 @@ starlette-prometheus = "*"
[dev-packages]
ipython = "*"
mypy = "*"
+# typing_extensions is required for mypy to operate
+typing_extensions = "*"
pytype = "*"
flake8 = "*"
flake8-annotations = "*"
@@ -43,4 +45,4 @@ pytest-cov = "*"
black = "==19.10b0"
[requires]
-python_version = "3.7"
+python_version = "3.8"