diff options
author | Bryan Newbold <bnewbold@archive.org> | 2021-10-27 18:48:46 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2021-10-27 18:48:56 -0700 |
commit | 020037d4714e7ba2ab172c7278494aed0b2148ad (patch) | |
tree | f671d0468114111fb63c75c85c9a21d34e6b8767 /python/Pipfile | |
parent | 50270a9152c8e88e66187ce755920e35c31bd0b5 (diff) | |
download | sandcrawler-020037d4714e7ba2ab172c7278494aed0b2148ad.tar.gz sandcrawler-020037d4714e7ba2ab172c7278494aed0b2148ad.zip |
pipenv: flipflop from yapf back to black; more type packages; bump grobid_tei_xml
Diffstat (limited to 'python/Pipfile')
-rw-r--r-- | python/Pipfile | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/python/Pipfile b/python/Pipfile index 16807fe..92c0437 100644 --- a/python/Pipfile +++ b/python/Pipfile @@ -21,9 +21,15 @@ mypy = "*" flake8 = "*" flake8-annotations = "*" isort = "*" -yapf = "*" types-requests = "*" +types-beautifulsoup4 = "*" types-dateparser = "*" +types-psycopg2 = "*" +types-Pillow = "*" + +# must lock black to an exact version because it is still "beta" +# see: https://github.com/psf/black/issues/517 +black = "==21.9b0" [packages] requests = ">=2" @@ -39,7 +45,7 @@ ftfy = "*" internetarchive = "*" Flask = ">=1" urlcanon = "*" -pillow = ">=3" +Pillow = ">=3" python-poppler = ">=0.2.1" selectolax = ">=0.2" trafilatura = "*" @@ -49,7 +55,7 @@ braveblock = "*" dynaconf = ">=3" sentry-sdk = { version = ">=0.14.0", extras = [] } zstandard = "*" -grobid_tei_xml = "0.1.0" +grobid_tei_xml = "==0.1.*" [requires] python_version = "3.8" |