From ca27420345625782105af826120ff88cc1a5c631 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Dias--Monteiro?= Date: Mon, 25 Jul 2022 11:55:12 +0200 Subject: [PATCH] Allow newer version of numpy --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 7068919..139ab97 100644 --- a/setup.py +++ b/setup.py @@ -2,12 +2,12 @@ from setuptools import setup setup(name='apeer-ometiff-library', - version='1.10.0', + version='1.10.1', description='Library to read and write ometiff images', url='https://github.com/apeer-micro/apeer-ometiff-library', author='apeer-micro', packages=setuptools.find_packages(), - install_requires=['numpy==1.18.5','tifffile==2020.6.3', 'imagecodecs==2020.5.30'], + install_requires=['numpy>=1.18.5','tifffile==2020.6.3', 'imagecodecs==2020.5.30'], license='MIT', classifiers=[ "Programming Language :: Python :: 3",