From 0244178bc1b08e459eb4dc6c595283cdab0c3b63 Mon Sep 17 00:00:00 2001 From: Gregory Ashton Date: Thu, 1 Apr 2021 07:12:20 -0700 Subject: [PATCH 1/3] Add astropy dependency --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index e2a3b3e..e1b6103 100644 --- a/setup.py +++ b/setup.py @@ -97,6 +97,7 @@ setup( "gwpy", "gwosc", "matplotlib", + "astropy", "numpy", "tqdm", "corner", -- GitLab From c79b156e053eecfebc31517c0ddab5556c5e6432 Mon Sep 17 00:00:00 2001 From: Gregory Ashton Date: Thu, 1 Apr 2021 07:18:33 -0700 Subject: [PATCH 2/3] Add pyerfa as a dependency --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index e1b6103..739b3b1 100644 --- a/setup.py +++ b/setup.py @@ -98,6 +98,7 @@ setup( "gwosc", "matplotlib", "astropy", + "pyerfa", "numpy", "tqdm", "corner", -- GitLab From 18779b025e8f4bf70e8da5dc83d759f881527d09 Mon Sep 17 00:00:00 2001 From: Gregory Ashton Date: Thu, 1 Apr 2021 07:24:12 -0700 Subject: [PATCH 3/3] Force astropy less than 4.2 --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 739b3b1..ac8d15d 100644 --- a/setup.py +++ b/setup.py @@ -97,8 +97,7 @@ setup( "gwpy", "gwosc", "matplotlib", - "astropy", - "pyerfa", + "astropy<4.2", "numpy", "tqdm", "corner", -- GitLab