chore: split dev requirement from package install
This commit is contained in:
parent
e862e9f280
commit
bed5436a6e
|
@ -26,7 +26,8 @@ $(VENV):
|
||||||
install: $(VENV)
|
install: $(VENV)
|
||||||
source $(VENV)/bin/activate
|
source $(VENV)/bin/activate
|
||||||
pip install --upgrade pip setuptools wheel
|
pip install --upgrade pip setuptools wheel
|
||||||
pip install $(SHARED_DEV_REQUIREMENTS) $(PIP_INSTALL)
|
pip install $(SHARED_DEV_REQUIREMENTS)
|
||||||
|
[[ -z "$(PIP_INSTALL)" ]] || pip install $(PIP_INSTALL)
|
||||||
|
|
||||||
.PHONY: .format
|
.PHONY: .format
|
||||||
.format: $(VENV)
|
.format: $(VENV)
|
||||||
|
|
Loading…
Reference in New Issue