From 62161bb726d7405e6d6f692dbd5d6997cd21815b Mon Sep 17 00:00:00 2001 From: "Warren J. Hack" Date: Thu, 6 Jan 2022 09:52:22 -0500 Subject: [PATCH] Add explicit dependency on spherical-geometry and set min version (#1232) (#1235) * Add explicit dependency on spherical-geometry and set min version * Undo restricting numpy version to <1.22 Co-authored-by: Mihai Cara --- doc/.rtd-environment.yml | 2 +- setup.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/.rtd-environment.yml b/doc/.rtd-environment.yml index f3f83b58b..c72ed97c0 100644 --- a/doc/.rtd-environment.yml +++ b/doc/.rtd-environment.yml @@ -15,7 +15,7 @@ dependencies: - sphinx_rtd_theme - sphinx_automodapi - matplotlib - - spherical_geometry + - "spherical_geometry>=1.2.22" - fitsblender - nictools - pyregion diff --git a/setup.py b/setup.py index 4cf61448c..2f3ebae26 100755 --- a/setup.py +++ b/setup.py @@ -83,7 +83,7 @@ 'astropy<5.0.0', 'fitsblender', 'nictools', - 'numpy<1.22', + 'numpy>=1.19', 'scipy', 'matplotlib', 'scikit-learn>=0.20', @@ -97,6 +97,7 @@ 'stregion', 'requests', # HAP-pipeline specific: + "spherical_geometry>=1.2.22", 'astroquery>=0.4', 'bokeh', 'pandas',