From dd8aa636df91027f1b02200d12e65c17df366f7e Mon Sep 17 00:00:00 2001 From: ftorres7382 Date: Mon, 8 Jun 2026 22:16:16 -0400 Subject: [PATCH] chore(deps): limited numpy version to <2.0 Found an issue with the use of np.fromstring which was changed to np.frombuffer in newer versions. My version of python tried to install a new version of numpy that ended up not working well with the code. --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 80f48e2c..c96f5ebb 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ -numpy>=1.17.4 +numpy>=1.17.4, <2.0 PyQt5>=5.12.8 PyOpenGL>=3.1.0