diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2020-08-12 11:32:09 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2020-08-12 11:32:09 +0200 |
commit | 342f065f38d80b47a19634acf68e35d158ecf71c (patch) | |
tree | c604c41817fe9a95aea810e228e6f98f843eb1bd /Pipfile | |
parent | 81f4b718014677a25a94c962473d71fcee12c896 (diff) | |
download | fuzzycat-342f065f38d80b47a19634acf68e35d158ecf71c.tar.gz fuzzycat-342f065f38d80b47a19634acf68e35d158ecf71c.zip |
let make deps pipenv install use pre releases
The problem appeared as black seems to be a pre-release, cf.
https://github.com/microsoft/vscode-python/issues/5171.
Diffstat (limited to 'Pipfile')
-rw-r--r-- | Pipfile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -6,7 +6,10 @@ verify_ssl = true [dev-packages] [packages] -fuzzycat = {editable = true, path = "."} +fuzzycat = {editable = true, extras = ["dev"], path = "."} [requires] python_version = "3.7" + +[pipenv] +allow_prereleases = true |