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:
6
Makefile
6
Makefile
@@ -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:
|
||||||
|
|||||||
Reference in New Issue
Block a user