From 62466e63e33130b2ea65ec0249908eb1757b443f Mon Sep 17 00:00:00 2001 From: Eduardo H P Pooch Date: Thu, 20 Aug 2020 14:10:56 -0300 Subject: [PATCH] Update requirements.txt install opencv 4.2 Python 2.7 is not supported anymore in opencv since 4.3.0.36, the latest support for python 2.7 is opencv-python version 4.2.0.32. The requirement 'opencv-python>=3.2' installs the latest version which does not support python 2 anymore. --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 23a0ae0bf..b19a38978 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ numpy>=1.13 pyyaml==3.12 matplotlib -opencv-python>=3.2 +opencv-python==4.2.0.32 setuptools Cython mock