1
0
mirror of https://github.com/venthur/blag.git synced 2025-11-25 20:52:43 +00:00

fixed remaining python3s in makefile

This commit is contained in:
Bastian Venthur
2021-01-16 20:13:56 +01:00
parent 05db61da55
commit 961f65ae1a

View File

@@ -11,15 +11,15 @@ $(VENV): requirements.txt requirements-dev.txt setup.py
touch $(VENV) touch $(VENV)
test: test:
$(VENV)/bin/python -m pytest $(VENV)/bin/python3 -m pytest
.PHONY: test .PHONY: test
lint: lint:
$(VENV)/bin/python -m flake8 $(VENV)/bin/python3 -m flake8
.PHONY: lint .PHONY: lint
release: release:
python3 setup.py sdist bdist_wheel upload $(VENV)/bin/python3 setup.py sdist bdist_wheel upload
.PHONY: release .PHONY: release
clean: clean: