aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
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