aboutsummaryrefslogtreecommitdiffstats
path: root/Pipfile
diff options
context:
space:
mode:
authorMartin Czygan <martin.czygan@gmail.com>2020-08-12 11:32:09 +0200
committerMartin Czygan <martin.czygan@gmail.com>2020-08-12 11:32:09 +0200
commit342f065f38d80b47a19634acf68e35d158ecf71c (patch)
treec604c41817fe9a95aea810e228e6f98f843eb1bd /Pipfile
parent81f4b718014677a25a94c962473d71fcee12c896 (diff)
downloadfuzzycat-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--Pipfile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Pipfile b/Pipfile
index 0032452..d862b07 100644
--- a/Pipfile
+++ b/Pipfile
@@ -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