From 1fcd103d275bffb08ec9cea215263f3359b44bcc Mon Sep 17 00:00:00 2001 From: Mike Gerber Date: Mon, 13 Mar 2023 20:00:27 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=94=20CircleCI:=20Install=20TF=20by=20exp?= =?UTF-8?q?licitly=20invoking=20pip=20on=20Py=203.11?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .circleci/config.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2090600..e55e2bb 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -15,7 +15,8 @@ jobs: steps: - checkout - run: pip3 install --upgrade pip - - run: if python3 --version | grep -q "Python 3.6"; then pip install --prefer-binary -U opencv-python-headless numpy; fi + - run: if python3 --version | grep -q "Python 3.6"; then pip install --prefer-binary -U opencv-python-headless numpy; fi # to avoid compilation + - run: if python3 --version | grep -q "Python 3.11"; then pip install --prefer-binary -U tensorflow; fi # manual install seems to allow installing the RC (but not through requirements.txt) - run: make install deps-test-ubuntu PIP_INSTALL="pip3 install" - run: make coverage - codecov/upload