Skip to content

Commit

Permalink
chore(python): Rename venv folder to .venv (pola-rs#7790)
Browse files Browse the repository at this point in the history
  • Loading branch information
stinodego authored and konstin committed May 8, 2023
1 parent 183b5db commit 8ae0d29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions py-polars/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ else
VENV_BIN=$(VENV)/bin
endif

venv: ## Set up virtual environment and install requirements
.venv: ## Set up virtual environment and install requirements
python3 -m venv $(VENV)
$(MAKE) requirements

.PHONY: requirements
requirements: venv ## Install/refresh all project requirements
requirements: .venv ## Install/refresh all project requirements
$(VENV_BIN)/python -m pip install --upgrade pip
$(VENV_BIN)/pip install -r requirements-dev.txt
$(VENV_BIN)/pip install -r requirements-lint.txt
Expand Down

0 comments on commit 8ae0d29

Please sign in to comment.