diff options
author | Bryan Newbold <bnewbold@archive.org> | 2020-12-07 18:41:04 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2021-01-05 14:29:21 -0800 |
commit | d0230c61172a77e43111fce07489bd86ae3ad39c (patch) | |
tree | a1d8f82c5e29e6760a2962ab81ce3e46ad15866c /Pipfile | |
parent | 1ae59a69133f48da19c97f4068c6154690c657f6 (diff) | |
download | fatcat-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-- | Pipfile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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" |