Skip to content

Commit b1122f2

Browse files
authored
don't use --no-index during make install
The --no-index tells pip that it is not allowed to look on pypi for packages, but this is bad since it doesn't allow for pip to automatically install requirements
1 parent 53ad108 commit b1122f2

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
@@ -9,7 +9,7 @@ SAGE = sage
99
all: install test
1010

1111
install:
12-
$(SAGE) -pip install --upgrade --no-index -v .
12+
$(SAGE) -pip install --upgrade -v .
1313

1414
uninstall:
1515
$(SAGE) -pip uninstall .

0 commit comments

Comments
 (0)