From 3a029ca512cec911aa32f7156c831c0cca75543f Mon Sep 17 00:00:00 2001 From: Mike Gerber Date: Tue, 14 Mar 2023 11:57:42 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=94=20Do=20not=20test=20on=20Python=203.1?= =?UTF-8?q?1=20for=20now=20(unsupported)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .circleci/config.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index e55e2bb..f682af8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -16,7 +16,6 @@ jobs: - 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 # 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 @@ -31,4 +30,4 @@ workflows: - screenshots matrix: parameters: - python-image: ["python:3.6", "python:3.7", "python:3.8", "python:3.9", "python:3.10", "python:3.11"] + python-image: ["python:3.6", "python:3.7", "python:3.8", "python:3.9", "python:3.10"]