From 762568df8f49117b77b05c737938bd7aa1670cd7 Mon Sep 17 00:00:00 2001
From: Colm Talbot <colm.talbot@ligo.org>
Date: Mon, 8 Feb 2021 15:53:14 -0600
Subject: [PATCH] Pin version of numpy and pandas

---
 requirements.txt | 4 ++--
 setup.py         | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/requirements.txt b/requirements.txt
index 8512031dd..3ef1d047a 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,10 +1,10 @@
 dynesty
 emcee
 corner
-numpy>=1.9
+numpy<1.20
 matplotlib>=2.0
 scipy>=0.16
-pandas
+pandas<1.2
 mock
 dill
 tqdm
diff --git a/setup.py b/setup.py
index 79fe30cfe..f80072463 100644
--- a/setup.py
+++ b/setup.py
@@ -91,9 +91,9 @@ setup(name='bilby',
           'emcee',
           'corner',
           'dill',
-          'numpy>=1.9',
+          'numpy<1.20',
           'matplotlib>=2.0',
-          'pandas',
+          'pandas<1.2',
           'scipy',
           'tqdm'],
       entry_points={'console_scripts':
-- 
GitLab