Skip to content

Commit

Permalink
fix: add upgrade to uv install
Browse files Browse the repository at this point in the history
  • Loading branch information
puehringer authored Nov 29, 2024
1 parent 6394a44 commit 5cfe9b6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,17 @@ documentation:
.PHONY: install ## Install the requirements
install:
@if [ ! -z "${CI}" ]; then \
uv pip install -e . --system; \
uv pip install -e . --system --upgrade; \
else \
uv pip install -e .; \
uv pip install -e . --upgrade; \
fi

.PHONY: develop ## Set up the development environment
develop:
@if [ ! -z "${CI}" ]; then \
uv pip install -e ".[develop]" --system; \
uv pip install -e ".[develop]" --system --upgrade; \
else \
uv pip install -e ".[develop]"; \
uv pip install -e ".[develop]" --upgrade; \
fi

.PHONY: env_encrypt ## Encrypts the current ./<app>/.env
Expand Down

0 comments on commit 5cfe9b6

Please sign in to comment.