From b0fb554b31bc03df47b850f5805c2664124ede71 Mon Sep 17 00:00:00 2001 From: Mike Gerber Date: Thu, 12 Oct 2023 20:39:33 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=94=20CircleCI:=20Do=20not=20test=20on=20?= =?UTF-8?q?Python=203.6=20anymore=20(EOL=20since=202021-12-23)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (See also #90 where it came up.) --- .circleci/config.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f682af8..ce83e8e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -15,7 +15,6 @@ 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 # to avoid compilation - run: make install deps-test-ubuntu PIP_INSTALL="pip3 install" - run: make coverage - codecov/upload @@ -30,4 +29,4 @@ workflows: - screenshots matrix: parameters: - python-image: ["python:3.6", "python:3.7", "python:3.8", "python:3.9", "python:3.10"] + python-image: ["python:3.7", "python:3.8", "python:3.9", "python:3.10"]