Skip to content

Commit 1abc74d

Browse files
authored
specify python3 (#679)
1 parent e6f89fb commit 1abc74d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.PHONY: docs
22

33
install-dev:
4-
pip install -e ".[dev,web]"
4+
pip3 install -e ".[dev,web]"
55

66
install-pre-commit:
77
pre-commit install
@@ -31,10 +31,10 @@ it-test-docker: core-it-test airflow-it-test-docker-with-env
3131
test: unit-test it-test doc-test
3232

3333
package:
34-
pip install wheel && python setup.py sdist bdist_wheel
34+
pip3 install wheel && python3 setup.py sdist bdist_wheel
3535

3636
publish: package
37-
pip install twine && python -m twine upload dist/*
37+
pip3 install twine && python3 -m twine upload dist/*
3838

3939
develop:
4040
python3 setup.py develop

0 commit comments

Comments
 (0)