From 3d2357cc00c01274c3930f67dcfa694112544776 Mon Sep 17 00:00:00 2001 From: Jonathan Brophy Date: Thu, 25 Jul 2024 11:58:20 -0700 Subject: [PATCH] security patch --- requirements.txt | 4 ++-- setup.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/requirements.txt b/requirements.txt index 8962135..af4792c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,11 +7,11 @@ openpyxl==3.0.7 # reading excel mat73==0.50 # reading matlab numpy==1.23.1 ngboost==0.3.12 -scikit-learn==1.4.2 +scikit-learn==1.5.0 catboost==1.0.6 lightgbm==3.3.2 # if arm64, install using conda-forge xgboost==1.6.1 -torch==1.13.1 +torch==2.2.0 pandas==1.4.3 pgbm==1.6 properscoring==0.1 diff --git a/setup.py b/setup.py index 34425df..fb2a37a 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ libraries.append('m') setup(name="ibug", - version="0.0.11", + version="0.0.12", description="Instance-Based Uncertainty Estimation for Gradient-Boosted Regression Trees", author="Jonathan Brophy", author_email="jonathanbrophy47@gmail.com", @@ -36,7 +36,7 @@ "numpy>=1.22", "uncertainty-toolbox>=0.1.0", "joblib>=1.1.0", - "scikit-learn>=1.1.1", + "scikit-learn>=1.5.0", "scipy>=1.8.1", "pandas>=1.4.3", "Cython>=0.29.23",