From 868706b4f314b7bd6d27053133184d1816bc742c Mon Sep 17 00:00:00 2001 From: Erick Martins Ratamero Date: Wed, 13 Sep 2023 10:15:27 -0400 Subject: [PATCH] future-proofing against numpy 2.0.0 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index f262c74..7f60999 100644 --- a/setup.py +++ b/setup.py @@ -17,8 +17,8 @@ url="https://github.com/TheJacksonLaboratory/ezomero", packages=setuptools.find_packages(), install_requires=[ - 'omero-py==5.13.1', - 'numpy>=1.22' + 'omero-py == 5.13.1', + 'numpy >= 1.22, < 2.0' ], extras_require={ "tables": ["pandas"],