Skip to content

Commit ddeb479

Browse files
committed
Install requirements before building package
1 parent b04891b commit ddeb479

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,9 @@ docker: docker-build ## build a docker image and run the service
9090

9191
install: clean ## install the package to the active Python's site-packages
9292
pip install --upgrade pip
93-
python3 setup.py build_ext --inplace
94-
python setup.py install
9593
pip install -r requirements.txt
94+
python setup.py build_ext --inplace
95+
python setup.py install
9696
pip install -r requirements-tests.txt
9797
pip install -r requirements-dev.txt
9898
pip install -r requirements-deploy.txt

0 commit comments

Comments
 (0)