From 299d23f2c5474f6daf675c8f3edeafbffe515330 Mon Sep 17 00:00:00 2001 From: Bastian Venthur Date: Mon, 1 Feb 2021 21:42:00 +0100 Subject: [PATCH] added missing venv-dependencies --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 2821237..71e29a7 100644 --- a/Makefile +++ b/Makefile @@ -14,11 +14,11 @@ test: $(VENV) $(VENV)/bin/python3 -m pytest .PHONY: test -lint: +lint: $(VENV) $(VENV)/bin/python3 -m flake8 .PHONY: lint -release: +release: $(VENV) $(VENV)/bin/python3 setup.py sdist bdist_wheel $(VENV)/bin/twine upload dist/* .PHONY: release