Skip to content

Commit

Permalink
make install: prefer binary OpenCV/Numpy on 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
bertsky authored Mar 14, 2023
1 parent 3fb69f2 commit 385c595
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ deps-test:
# (Re)install the tool
install:
$(PIP) install -U pip wheel setuptools fastentrypoints
@# speedup for end-of-life builds
if $(PYTHON) -V | fgrep -e 3.5 -e 3.6; then $(PIP) install --prefer-binary -U opencv-python-headless numpy; fi
for mod in $(BUILD_ORDER);do (cd $$mod ; $(PIP_INSTALL) .);done
@# workaround for shapely#1598
$(PIP) install --no-binary shapely --force-reinstall shapely
Expand Down

0 comments on commit 385c595

Please sign in to comment.