From 656c298c6341bac3fecb6998d8c491b391674dcb Mon Sep 17 00:00:00 2001 From: AbdeRahmane Messaadi Date: Sat, 22 Jul 2023 17:41:26 +0100 Subject: [PATCH 1/2] Added `tqdm` to setup.py If 'tqdm' is not installed, no warning will show and the progress will not be displayed. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 60fa15ea..1af63503 100644 --- a/setup.py +++ b/setup.py @@ -48,6 +48,7 @@ 'matplotlib', 'scikit-learn <= 1.1.3', # Pinned due to boken scikit-optimize 'scikit-optimize', + 'tqdm' ], 'dev': [ 'ruff==0.0.160', From 50d4d15485feee4dc4b6371559afdc5ef6c5ef9c Mon Sep 17 00:00:00 2001 From: AbdeRahmane M Date: Sat, 5 Aug 2023 22:39:40 +0100 Subject: [PATCH 2/2] Added a missing comma --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1af63503..20a28e03 100644 --- a/setup.py +++ b/setup.py @@ -48,7 +48,7 @@ 'matplotlib', 'scikit-learn <= 1.1.3', # Pinned due to boken scikit-optimize 'scikit-optimize', - 'tqdm' + 'tqdm', ], 'dev': [ 'ruff==0.0.160',