From 898599e72737f9a51b92c65b76ef55cb96519712 Mon Sep 17 00:00:00 2001 From: Enzo Busseti Date: Wed, 16 Oct 2024 14:58:59 +0400 Subject: [PATCH] testing removal of numpy<2.0.0 constraint --- pyproject.toml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 99ccfd9b5..56a8936b2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,11 +23,8 @@ maintainers = [{name = "Enzo Busseti", email = "enzo.busseti@gmail.com"}] # their versions of dependencies work correctly. Please do report bugs coming # from some combination of dependency versions that break Cvxportfolio code. -dependencies = ["pandas", - # July 2024, Numpy 2 causes issues with CVXPY's conic interface on Py 3.12 - "numpy; python_version<'3.12'", - "numpy<2.0.0; python_version>='3.12'", - "matplotlib", "requests", "cvxpy", +dependencies = [ + "pandas", "numpy", "matplotlib", "requests", "cvxpy", # "multiprocess", # robustifies usage w/ 3rd party modules, used if installed "scs" # it's hardcoded as fallback solver if numerical errors ]