From 9ff17a26590a9f5ad37830224b4fe93e6cd3acbe Mon Sep 17 00:00:00 2001 From: Clemens Prescher Date: Tue, 23 Jul 2024 14:52:34 +0200 Subject: [PATCH] update numpy and scipy version to reflect support of only py 3.10 and above --- pyproject.toml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a02f558..e972531 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,14 +27,8 @@ files = ["glassure/__init__.py"] [tool.poetry.dependencies] python = "^3.10" -numpy = [ - { version = "^1.24.0", python = "<3.10" }, - { version = "^1.26.0", python = ">=3.10" } -] -scipy = [ - { version = "^1.9.3", python = "<3.10" }, - { version = "^1.11.3", python = ">=3.10" } -] +numpy = "^1.26.0" +scipy = "^1.11.3" lmfit = "^1.2.0" pandas = "^2.1.0" pydantic = "^2.7.1"