Skip to content

Commit eb952f6

Browse files
committed
use setuptools for normal instalaltion
1 parent a3e0187 commit eb952f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
SERVICES_DIR := services
22

33
install:
4-
@for f in $(shell ls ${SERVICES_DIR}); do poetry install -C ${SERVICES_DIR}/$${f}; done
4+
@for f in $(shell ls ${SERVICES_DIR}); do pip install ${SERVICES_DIR}/$${f}; done
55

66
install-dev:
77
@for f in $(shell ls ${SERVICES_DIR}); do pip install -e ${SERVICES_DIR}/$${f};poetry install -C ${SERVICES_DIR}/$${f} --only dev --no-root; done

0 commit comments

Comments
 (0)