aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
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 /Makefile
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 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 000c468..ca208cb 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,9 @@ SHELL := /bin/bash
.PHONY: deps
deps: ## Install dependencies from setup.py into pipenv
- pipenv install '-e .'
+ # We need to use --pre, because e.g. black is considered a pre-release
+ # version, https://github.com/microsoft/vscode-python/issues/5171
+ pipenv install --pre '-e .[dev]'
.PHONY: help
help: ## Print info about all commands