aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMartin Czygan <martin.czygan@gmail.com>2021-04-15 15:57:24 +0200
committerMartin Czygan <martin.czygan@gmail.com>2021-04-15 15:57:24 +0200
commit1edd47ee8f43e8a8b84f0ce9ea2c92d998ae3efb (patch)
treeff6233a95a0e7c9f2d810e4735132eafb726f0fe /Makefile
parentcd5aff2602b944c95d2ed76f9f916ef0427d0013 (diff)
parent79b6476827f80ed86019804b7293ff1a8fd4af9a (diff)
downloadfuzzycat-1edd47ee8f43e8a8b84f0ce9ea2c92d998ae3efb.tar.gz
fuzzycat-1edd47ee8f43e8a8b84f0ce9ea2c92d998ae3efb.zip
Merge branch 'bnewbold-dev-setup'
* bnewbold-dev-setup: dynaconf: switch to fuzzycat.config import across project upgrade to python3.8 gitlab CI: try 'make deps' and 'make test' makefile: run common commands inside pipenv makefile: change 'deps' to be simple --dev --deploy make fmt
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 013b32c..0f4a054 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