diff options
author | Joseph Hunkeler <jhunk@stsci.edu> | 2016-05-02 15:13:11 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunk@stsci.edu> | 2016-05-02 15:13:11 -0400 |
commit | d2f66bbcf50fb3899e3124a90ec25e8306eb4ca6 (patch) | |
tree | 15def03102dc8f73ed733c6252c629b55ae12d38 /jwst_lib/build.sh | |
parent | ef37a66e9ea433e47f25c7c10e816f51d25ed4d4 (diff) | |
download | astroconda-dev-d2f66bbcf50fb3899e3124a90ec25e8306eb4ca6.tar.gz |
Implement request to disable jwst_lib.{modeling,wcs}
Diffstat (limited to 'jwst_lib/build.sh')
-rw-r--r-- | jwst_lib/build.sh | 10 |
1 files changed, 8 insertions, 2 deletions
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 |