added missing venv-dependencies

This commit is contained in:
Bastian Venthur
2021-02-01 21:42:00 +01:00
parent 5f5a8af49b
commit 299d23f2c5

View File

@@ -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