From 5f1d6d6ea56ddc6c22d9b7a9e0d2769c824be4c3 Mon Sep 17 00:00:00 2001 From: "Maarten A. Breddels" Date: Tue, 27 Jun 2023 12:28:42 +0200 Subject: [PATCH] fix: remove numpy upper bound pin We are unlikely to ever be affected by breaking chanhes in numpy because we do not use a large surface area. See https://iscinumpy.dev/post/bound-version-constraints/#tldr 'Anyone can fix a missing cap, but users cannot fix an over restrictive cap causing solver errors.' --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 8c8165037..1d3ecb0a2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -15,7 +15,7 @@ install_requires = ipywidgets>=7.5.0,<9 traitlets>=4.3.0 traittypes>=0.0.6 - numpy>=1.10.4,<2.0.0 + numpy>=1.10.4 pandas>=1.0.0,<3.0.0 classifiers = Framework :: Jupyter