From 1d2f96312bd7dbe363d1e81996be9a55eaf32782 Mon Sep 17 00:00:00 2001
From: Siyu <jiansiyu@gmail.com>
Date: Thu, 15 Jul 2021 14:26:14 -0400
Subject: [PATCH 1/2] change the joblib to version 0.14.1 which is the same
 version used eagle. Tested run under 3.7 in ubuntu

---
 requirements.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/requirements.txt b/requirements.txt
index 0e07278..0bbf236 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,6 +1,6 @@
 # Also update `install_requires` in `setup.py` and the conda install process in `.travis.yml`!
 
-joblib>=0.9.4
+joblib==0.14.1
 numpy>=1.9
 scikit-learn>=0.17.1
 sigopt>=2.6.0

From 139602a82001ad51aa352e03dec534cd7d6acd96 Mon Sep 17 00:00:00 2001
From: Siyu <jiansiyu@gmail.com>
Date: Thu, 5 Aug 2021 22:34:00 -0400
Subject: [PATCH 2/2] Update setup.py

change Joblib version to 0.14.1 to solve the joblib version conflict issue
---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index 86f061c..e1e0d54 100644
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@
 
 # Keep this in sync with `requirements.txt` and the conda install process in `.travis.yml`!
 install_requires = [
-  'joblib>=0.9.4',
+  'joblib==0.14.1',
   'numpy>=1.9',
   'scikit-learn>=0.19,<0.21',
   'sigopt>=2.6.0',