Pipfile: Specify exact version of black

Black only releases pre-release versions, which causes issues with
pipenv. Instead of always running pipenv with "--pre" and potenti-
ally letting in some other pre-release versions for other depende-
ncies, I would rather specify the latest black version explicitly.

See: https://github.com/psf/black/issues/517
See: https://github.com/microsoft/vscode-python/issues/5171
This commit is contained in:
Alan Orth 2019-12-14 12:41:28 +02:00
parent 64ffc2f1da
commit 7964d98ca5
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ pytest = "*"
ipython = "*"
flake8 = "*"
pytest-clarity = "*"
black = "*"
black = "==19.10b0"
isort = "*"
csvkit = "*"