Skip to content

Commit

Permalink
Update makefile instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
umluizlima committed Dec 1, 2021
1 parent 074b728 commit 17e702f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
.PHONY: environment
environment:
pyenv install -s 3.10.0
pyenv uninstall --force email-sender
pyenv virtualenv 3.10.0 --force email-sender
pyenv local email-sender

.PHONY: install
install:
pip freeze | xargs -r pip uninstall -y && \
pip install -r requirements-dev.txt && \
pre-commit install

Expand Down

0 comments on commit 17e702f

Please sign in to comment.