From 926e5ee1da873ae9edeebf9beb7290a72f3ce41b Mon Sep 17 00:00:00 2001 From: Avinash Kumar Deepak Date: Mon, 16 Feb 2026 15:24:55 +0530 Subject: [PATCH] add missing deps to pyproject.toml fixes #354 --- pyproject.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 63a8f6b7..2c12b5bc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ name = "concore" version = "1.0.0" description = "Concore workflow management CLI" readme = "README.md" -requires-python = ">=3.8" +requires-python = ">=3.9" license = {text = "MIT"} dependencies = [ "click>=8.0.0", @@ -15,6 +15,10 @@ dependencies = [ "beautifulsoup4>=4.9.0", "lxml>=4.6.0", "psutil>=5.8.0", + "numpy>=1.19.0", + "pyzmq>=22.0.0", + "scipy>=1.5.0", + "matplotlib>=3.3.0", ] [project.optional-dependencies]