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:33:54 +02:00
parent 142959acdb
commit 67bc30ead0
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ ipython = "*"
"flake8" = "*"
pytest = "*"
isort = "*"
black = "*"
black = "==19.10b0"
[requires]
python_version = "3.8"