Skip to content

Commit 595f031

Browse files
committed
removed poetry
1 parent eacf1fc commit 595f031

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Makefile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,12 @@ all: help
1313
.PHONY: venv
1414
venv: ## Create a Python virtual environment
1515
$(info Creating Python 3 virtual environment...)
16-
poetry shell
16+
pipenv shell
1717

1818
.PHONY: install
1919
install: ## Install Python dependencies
2020
$(info Installing dependencies...)
21-
poetry config virtualenvs.create false
22-
poetry install
21+
sudo pipenv install --system --dev
2322

2423
.PHONY: lint
2524
lint: ## Run the linter

0 commit comments

Comments
 (0)