Skip to content

Commit

Permalink
Fix venv-creation in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
GereonV committed Nov 29, 2024
1 parent 6379ac5 commit a9d2b57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ test: $(DEV)
$(PYTHON) -m pytest --color=yes tests
mypy: $(DEV)
$(PYTHON) -m mypy --strict --show-error-context --pretty src tests
$(DEV): env
$(DEV): $(VENV)
$(PYTHON) -m pip install -e .[dev]

.PHONY: build
build: dist/
dist/: $(BUILD) src/ README.* LICENSE
rm -rf dist
$(PYTHON) -m build
$(BUILD): env
$(BUILD): $(VENV)
$(PYTHON) -m pip install build

.PHONY: clean
Expand Down

0 comments on commit a9d2b57

Please sign in to comment.