From bbd35ef0ba1286ab62fb9f6a0a58cb1ecac6d7a4 Mon Sep 17 00:00:00 2001 From: whitews Date: Wed, 27 Mar 2024 19:10:49 -0400 Subject: [PATCH] pin numpy, v2 will break the C ABI --- examples/logicle_example.py | 2 -- setup.py | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/examples/logicle_example.py b/examples/logicle_example.py index 0940ff0..6101589 100644 --- a/examples/logicle_example.py +++ b/examples/logicle_example.py @@ -8,5 +8,3 @@ fluoro_indices = [0, 1] xform_events = flowutils.transforms.logicle(events, fluoro_indices) - -print('asdf') diff --git a/setup.py b/setup.py index 9d1f70f..aec4522 100644 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ license='BSD', url="https://github.com/whitews/flowutils", ext_modules=[logicle_extension, gating_extension], - install_requires=['numpy>=1.20'], + install_requires=['numpy>=1.20,<2'], classifiers=[ 'Programming Language :: Python :: 3.12', 'Programming Language :: Python :: 3.11',