diff options
| -rw-r--r-- | jwst_lib/build.sh | 10 | ||||
| -rw-r--r-- | jwst_lib/meta.yaml | 2 | 
2 files changed, 9 insertions, 3 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 diff --git a/jwst_lib/meta.yaml b/jwst_lib/meta.yaml index 53117a8..a62e30f 100644 --- a/jwst_lib/meta.yaml +++ b/jwst_lib/meta.yaml @@ -2,7 +2,7 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '1' %} +{% set number = '0' %}  about:      home: ssh://git@bitbucket.org/stsci_ssb/jwst.git  | 
