From c6aa28b0d65f87d6f73fbf62f7a791a9aa1f6584 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Mon, 15 Apr 2013 23:13:26 +0200 Subject: [PATCH] now require numpy>=1.6.2 for float16 --- setup.py | 2 +- timeside/analyzer/core.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 77983f2..73cd95c 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ setup( version = '0.4.3', install_requires = [ 'setuptools', - 'numpy', + 'numpy>=1.6.2', 'mutagen', 'pil', ], diff --git a/timeside/analyzer/core.py b/timeside/analyzer/core.py index 7357c32..e6818af 100644 --- a/timeside/analyzer/core.py +++ b/timeside/analyzer/core.py @@ -28,7 +28,7 @@ numpy_data_types = [ #'float128', 'float64', 'float32', - # 'float16', + 'float16', 'int64', 'int16', 'int32', -- 2.39.5