mirror of
https://github.com/venthur/blag.git
synced 2025-11-25 20:52:43 +00:00
python -> python3
This commit is contained in:
6
Makefile
6
Makefile
@@ -5,9 +5,9 @@ all: lint test
|
|||||||
|
|
||||||
$(VENV): requirements.txt requirements-dev.txt setup.py
|
$(VENV): requirements.txt requirements-dev.txt setup.py
|
||||||
python3 -m venv $(VENV)
|
python3 -m venv $(VENV)
|
||||||
$(VENV)/bin/python -m pip install --upgrade -r requirements.txt
|
$(VENV)/bin/python3 -m pip install --upgrade -r requirements.txt
|
||||||
$(VENV)/bin/python -m pip install --upgrade -r requirements-dev.txt
|
$(VENV)/bin/python3 -m pip install --upgrade -r requirements-dev.txt
|
||||||
$(VENV)/bin/python -m pip install -e .
|
$(VENV)/bin/python3 -m pip install -e .
|
||||||
touch $(VENV)
|
touch $(VENV)
|
||||||
|
|
||||||
test:
|
test:
|
||||||
|
|||||||
Reference in New Issue
Block a user