From 31e89f53c772e8a0af3e38890545e1d1265665ff Mon Sep 17 00:00:00 2001 From: Archit Kulkarni Date: Fri, 17 May 2024 23:18:40 +0800 Subject: [PATCH] Remove upper bound version constraint on `numpy` dependency --- pyproject.toml | 2 +- requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e0359ad..dc580b0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "ISLP" version = "0.3.22" -dependencies = ["numpy>=1.7.1,<1.25", # max version for numba +dependencies = ["numpy>=1.7.1", "scipy>=0.9", "pandas>=0.20,<=1.9", "lxml", # pandas needs this for html diff --git a/requirements.txt b/requirements.txt index 4c1827e..10bff6a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -numpy>=1.7.1,<1.25 # max version for numba +numpy>=1.7.1 scipy>=0.9 pandas>=0.20 pandas<=1.9