From d32290213bdd9cf108cebea9a376f701cd2e7aff Mon Sep 17 00:00:00 2001 From: Michael Carlstrom Date: Mon, 17 Jun 2024 09:26:52 -0400 Subject: [PATCH 1/3] pin numpy --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index ec87d890..2de2aa51 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,6 +4,7 @@ name = "rov-24" version = "1.1.0" dependencies = [ + 'numpy' < 2.0.0, 'setuptools', 'flake8==7.0.0', 'mypy >= 1.7', From c00b4d19c090f295b5bc0624a9c97117987ea358 Mon Sep 17 00:00:00 2001 From: Michael Carlstrom Date: Mon, 17 Jun 2024 09:30:17 -0400 Subject: [PATCH 2/3] fix quote --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 2de2aa51..764bcf61 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ name = "rov-24" version = "1.1.0" dependencies = [ - 'numpy' < 2.0.0, + 'numpy < 2.0.0', 'setuptools', 'flake8==7.0.0', 'mypy >= 1.7', From 501c500a7b0d0e5a7886e09a19f16e72c46298f0 Mon Sep 17 00:00:00 2001 From: Michael Carlstrom Date: Mon, 17 Jun 2024 09:34:48 -0400 Subject: [PATCH 3/3] =?UTF-8?q?=F0=9F=A4=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 764bcf61..a602a8dc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,6 @@ name = "rov-24" version = "1.1.0" dependencies = [ - 'numpy < 2.0.0', 'setuptools', 'flake8==7.0.0', 'mypy >= 1.7', @@ -13,7 +12,7 @@ dependencies = [ 'pyqtgraph', 'pyqtdarktheme', 'opencv-python>=4.8.1', - 'numpy>=1.26', + 'numpy < 2.0.0', 'pytest-qt', 'pytest-xvfb', 'TCA9555@git+https://github.com/InvincibleRMC/TCA9555',