aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2021-04-13 17:14:48 -0700
committerBryan Newbold <bnewbold@archive.org>2021-04-13 17:14:50 -0700
commitb5cc554f37f2b695bb1ca1884fb56110d22ddf02 (patch)
treec1220b4fe700c4f00a4873551ce14faf553563f5 /Makefile
parent7a701662c17467a9eb3402cf8641a7dd15f5ad1c (diff)
downloadfuzzycat-b5cc554f37f2b695bb1ca1884fb56110d22ddf02.tar.gz
fuzzycat-b5cc554f37f2b695bb1ca1884fb56110d22ddf02.zip
makefile: change 'deps' to be simple --dev --deploy
When I ran 'make deps' as-is, my pipenv mutated the Pipfile and started re-locking. This project isn't using 'black' any more, so don't need the --pre flag.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 5a684f9..bd57d45 100644
--- a/Makefile
+++ b/Makefile
@@ -11,9 +11,7 @@ help: ## Print info about all commands
.PHONY: deps
deps: ## Install dependencies from setup.py into pipenv
- # 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]'
+ pipenv install --dev --deploy
.PHONY: fmt
fmt: ## Apply import sorting and yapf source formatting on all files