From d2f66bbcf50fb3899e3124a90ec25e8306eb4ca6 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 2 May 2016 15:13:11 -0400 Subject: Implement request to disable jwst_lib.{modeling,wcs} --- jwst_lib/build.sh | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'jwst_lib/build.sh') diff --git a/jwst_lib/build.sh b/jwst_lib/build.sh index ced0780..1b0b189 100644 --- a/jwst_lib/build.sh +++ b/jwst_lib/build.sh @@ -2,5 +2,11 @@ pip install --no-deps --force --upgrade d2to1 for d in jwst_lib/* do -( cd $d && python setup.py install || exit 1 ) -done \ No newline at end of file + case "$d" in + # Append deprecated packages here to disable them + */modeling) continue ;; + */wcs) continue ;; + *) echo "Processing package: $d" ;; + esac + ( cd $d && python setup.py install || exit 1 ) +done -- cgit