From fd17ef14ff1e55574131fb3ae72b1d8a98a57e06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C2=87=C2=87cois=20Leblanc?= Date: Mon, 2 Oct 2017 08:50:29 -0400 Subject: [PATCH] tightened numpy requirements, bumped to v0.1.4 --- autocrop/__version__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/autocrop/__version__.py b/autocrop/__version__.py index 145e8ba..7e207a2 100644 --- a/autocrop/__version__.py +++ b/autocrop/__version__.py @@ -3,4 +3,4 @@ __title__ = 'autocrop' __description__ = 'Automatically crops faces from batches of pictures' __author__ = 'François Leblanc' -__version__ = '0.1.3' +__version__ = '0.1.4' diff --git a/setup.py b/setup.py index d21519d..97538e5 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ # What packages are required for this module to be executed? REQUIRED = [ - 'numpy>=1', + 'numpy>=1.10', 'opencv-python>=3, <4' ]