diff options
author | Bryan Newbold <bnewbold@archive.org> | 2022-02-03 19:10:29 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2022-02-03 19:10:29 -0800 |
commit | 2515888f2211ece5172a88b3108aa7598add2bb2 (patch) | |
tree | 6255997a414ae10335a387f1161bc311fe52d26a | |
parent | a53dac1a9787abc9b25008b96505b450eee010ac (diff) | |
download | chocula-2515888f2211ece5172a88b3108aa7598add2bb2.tar.gz chocula-2515888f2211ece5172a88b3108aa7598add2bb2.zip |
pipenv: black (code style tool) has stable release; add some more type annotations
-rw-r--r-- | Pipfile | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -18,10 +18,9 @@ pytest-cov = "*" mypy = "*" flake8 = "*" flake8-annotations = "*" - -# must lock black to an exact version because it is still "beta" -# see: https://github.com/psf/black/issues/517 -black = "==19.10b0" +black = "*" +types-toml = "*" +types-requests = "*" [requires] python_version = "3.8" |