Skip to content

Commit

Permalink
Create venv in configured directory
Browse files Browse the repository at this point in the history
The option for VENV_EXISTS was hardcoded, which might have been an
oversight given that the ability to override the venv is mentioned
at the top of the file.
  • Loading branch information
nicholasjng committed May 7, 2024
1 parent 88a204a commit 0f479ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ dev: $(VENV_EXISTS)

$(VENV_EXISTS): pyproject.toml
# Create our Python 3 virtual environment
python -m venv env
python -m venv $(VENV)
$(VENV_BIN)/python -m pip install --upgrade pip
$(VENV_BIN)/python -m pip install -e .[$(INSTALL_EXTRA)]

Expand Down

0 comments on commit 0f479ec

Please sign in to comment.