From c42d03e51265c9d219f2e1acf14004c22c2d86c8 Mon Sep 17 00:00:00 2001 From: Hugo Evers <93601551+hugolytics@users.noreply.github.com> Date: Sun, 14 Jul 2024 22:24:04 +0200 Subject: [PATCH] Update setup.py --- setup.py | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/setup.py b/setup.py index 063adb2..ca04d49 100644 --- a/setup.py +++ b/setup.py @@ -16,21 +16,21 @@ zip_safe=True, python_requires=">=3.10", install_requires=[ - "xgboost~=2.0.3", - "torch~=2.1.2", - "pyro-ppl~=1.8.6", - "optuna~=3.5.0", - "properscoring~=0.1", - "scikit-learn~=1.4.0", - "numpy~=1.26.3", - "pandas~=2.1.4", - "plotnine~=0.12.4", - "scipy~=1.11.4", - "shap~=0.44.0", - "seaborn~=0.13.1", - "tqdm~=4.66.1", - "matplotlib~=3.8.2", - "ipython~=8.20.0", + "xgboost>=2.0.0,<3.0.0", + "torch>=2.0.0,<3.0.0", + "pyro-ppl>=1.8.0,<2.0.0", + "optuna>=3.0.0,<4.0.0", + "properscoring>=0.1,<0.2", + "scikit-learn>=1.0.0,<2.0.0", + "numpy>=1.20.0,<2.0.0", + "pandas>=1.0.0,<3.0.0", + "plotnine>=0.10.0,<0.13.0", + "scipy>=1.7.0,<2.0.0", + "shap>=0.40.0,<0.45.0", + "seaborn>=0.11.0,<0.14.0", + "tqdm>=4.60.0,<5.0.0", + "matplotlib>=3.3.0,<4.0.0", + "ipython>=7.0.0,<9.0.0", ], extras_require={ "docs": ["mkdocs", "mkdocstrings[python]", "mkdocs-jupyter"]