From d407136c4af415c3990acfc90ac80b6bee922b75 Mon Sep 17 00:00:00 2001 From: Juan Cobos Date: Mon, 11 May 2026 13:35:38 +0200 Subject: [PATCH 1/2] Add deps to pyproject.toml --- pyproject.toml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e34796ec..69062042 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,2 +1,12 @@ -[tool.black] -line-length = 120 \ No newline at end of file +[project] +name = "code" +version = "0.1.0" +description = "Add your description here" +readme = "README.md" +requires-python = ">=3.13" +dependencies = [ + "numpy>=2.4.4", + "pyqt6>=6.11.0", + "pyqtgraph>=0.14.0", + "pyserial>=3.5", +] From 5325ffd08db248118c8970ca82c3611a7b84f3fd Mon Sep 17 00:00:00 2001 From: Juan Cobos Date: Mon, 11 May 2026 13:40:57 +0200 Subject: [PATCH 2/2] Relax python version to 3.11 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 69062042..4ec9e06e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "code" version = "0.1.0" description = "Add your description here" readme = "README.md" -requires-python = ">=3.13" +requires-python = ">=3.11" dependencies = [ "numpy>=2.4.4", "pyqt6>=6.11.0",