diff options
| author | Bryan Newbold <bnewbold@archive.org> | 2021-10-27 15:19:23 -0700 | 
|---|---|---|
| committer | Bryan Newbold <bnewbold@archive.org> | 2021-10-27 15:19:25 -0700 | 
| commit | 6a34c0b8d5976bb35aecf3c794166e711b338f18 (patch) | |
| tree | 5a6bd64ca4eb70b855d15a09d67fe174262443df /Pipfile | |
| parent | 6812d37a27dae1e22ea45124576d7ed2d63695c6 (diff) | |
| download | grobid_tei_xml-6a34c0b8d5976bb35aecf3c794166e711b338f18.tar.gz grobid_tei_xml-6a34c0b8d5976bb35aecf3c794166e711b338f18.zip | |
update lint/fmt/test tools and configuration
yapf => black
isort config
mypy configuration
flake8 configuration
Diffstat (limited to 'Pipfile')
| -rw-r--r-- | Pipfile | 11 | 
1 files changed, 7 insertions, 4 deletions
| @@ -11,14 +11,17 @@ name = "pypi"  [dev-packages]  flake8 = "*"  flake8-annotations = "*" +isort = "*"  mypy = "*"  pytest = "*" -pytest-cov = "*"  pytest-codeblocks = "*" -typing_extensions = "*" -yapf = "*" -isort = "*" +pytest-cov = "*"  requests = "*" +typing_extensions = "*" + +# must lock black to an exact version because it is still "beta" +# see: https://github.com/psf/black/issues/517 +black = "==21.9b0"  [requires]  python_version = "3.8" | 
