From 7088fb5a7b88724d7be896295e0f6ee7ac740993 Mon Sep 17 00:00:00 2001 From: Brendan Gannon Date: Thu, 17 Feb 2022 12:46:04 -0500 Subject: fixing numpy build dependency to remove python eggs --- poppy/build.sh | 3 +-- poppy/meta.yaml | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/poppy/build.sh b/poppy/build.sh index 56f0b30..6df1dab 100644 --- a/poppy/build.sh +++ b/poppy/build.sh @@ -1,2 +1 @@ - -$PYTHON setup.py install \ No newline at end of file +$PYTHON -m pip install . --no-deps --ignore-installed --no-cache-dir -vvv diff --git a/poppy/meta.yaml b/poppy/meta.yaml index a28f50d..87f7679 100644 --- a/poppy/meta.yaml +++ b/poppy/meta.yaml @@ -21,7 +21,7 @@ package: requirements: build: - astropy >=4.0.0 - - numpy >=1.18.0 + - numpy {{ numpy }} - scipy >=1.5.0 - matplotlib >=3.2.0 - setuptools -- cgit