Skip to content

Commit

Permalink
future-proofing against numpy 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
erickmartins committed Sep 13, 2023
1 parent 7747c94 commit 868706b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand Down

0 comments on commit 868706b

Please sign in to comment.