From 6a08e7f433424ea0c1b18d7bb3fb248f663ea849 Mon Sep 17 00:00:00 2001 From: Eric Charles Date: Tue, 23 Aug 2022 14:28:21 -0700 Subject: [PATCH] move qp to core_extras until it is on pypi --- setup.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 09d73974..3379dd85 100755 --- a/setup.py +++ b/setup.py @@ -7,14 +7,16 @@ "pandas>=1.1", "tables-io>=0.7.5", "ceci>=1.10.1", - "qp @ git+https://github.com/LSSTDESC/qp", "pyyaml", "minisom", "scipy>=1.9.0", ] # dependencies for the core module -core_extras = ["hyperbolic @ git+https://github.com/jlvdb/hyperbolic"] +core_extras = [ + "hyperbolic @ git+https://github.com/jlvdb/hyperbolic", + "qp @ git+https://github.com/LSSTDESC/qp", +] # dependencies for the Creation module creation_extras = ["pzflow"]