We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6f89fb commit 1abc74dCopy full SHA for 1abc74d
1 file changed
Makefile
@@ -1,7 +1,7 @@
1
.PHONY: docs
2
3
install-dev:
4
- pip install -e ".[dev,web]"
+ pip3 install -e ".[dev,web]"
5
6
install-pre-commit:
7
pre-commit install
@@ -31,10 +31,10 @@ it-test-docker: core-it-test airflow-it-test-docker-with-env
31
test: unit-test it-test doc-test
32
33
package:
34
- pip install wheel && python setup.py sdist bdist_wheel
+ pip3 install wheel && python3 setup.py sdist bdist_wheel
35
36
publish: package
37
- pip install twine && python -m twine upload dist/*
+ pip3 install twine && python3 -m twine upload dist/*
38
39
develop:
40
python3 setup.py develop
0 commit comments