From 6d4add962e9c8a141297d052e000616b733aa99d Mon Sep 17 00:00:00 2001 From: Oscar Higgott <29460323+oscarhiggott@users.noreply.github.com> Date: Wed, 24 Jul 2024 21:07:39 +0000 Subject: [PATCH] numpy2 as dep in setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 521356b3..c0dfcb9e 100644 --- a/setup.py +++ b/setup.py @@ -153,7 +153,7 @@ def build_extension(self, ext): 'console_scripts': ['pymatching=pymatching._cli_argv:cli_argv'], }, python_requires=">=3.7", - install_requires=['scipy', 'numpy==1.x', 'networkx', 'matplotlib'], + install_requires=['scipy', 'numpy', 'networkx', 'matplotlib'], # Needed on Windows to avoid the default `build` colliding with Bazel's `BUILD`. options={'build': {'build_base': 'python_build_stim'}}, )