summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunk@stsci.edu>2016-04-20 00:05:28 -0400
committerJoseph Hunkeler <jhunk@stsci.edu>2016-04-20 00:05:28 -0400
commit1036d8a1201d335288dd6c426c3e146dfd2750b0 (patch)
tree6a42d48438d6139bd94b9842974a0eabd1b815dd
parent53f10f8285343167b5ec9bd4bbc6f1f9e171fe14 (diff)
downloadastroconda-dev-1036d8a1201d335288dd6c426c3e146dfd2750b0.tar.gz
Major dependency overhaul for jwst_*
-rw-r--r--jwst_lib/meta.yaml12
-rw-r--r--jwst_pipeline/meta.yaml18
-rw-r--r--jwst_tools/build.sh8
-rw-r--r--jwst_tools/meta.yaml14
4 files changed, 41 insertions, 11 deletions
diff --git a/jwst_lib/meta.yaml b/jwst_lib/meta.yaml
index 1b3c36a..bd9b7a6 100644
--- a/jwst_lib/meta.yaml
+++ b/jwst_lib/meta.yaml
@@ -17,19 +17,23 @@ package:
requirements:
build:
- d2to1
- - asdf-standard
+ - asdf
- astropy >=1.1
- crds
- - asdf
+ - gwcs
+ - jsonschema
- stsci.distutils
+ - nose
- numpy x.x
- setuptools
- python x.x
run:
- - asdf-standard
+ - asdf
- astropy >=1.1
- crds
- - asdf
+ - gwcs
+ - nose
+ - jsonschema
- numpy x.x
- python x.x
source:
diff --git a/jwst_pipeline/meta.yaml b/jwst_pipeline/meta.yaml
index dad8aac..1b27156 100644
--- a/jwst_pipeline/meta.yaml
+++ b/jwst_pipeline/meta.yaml
@@ -18,17 +18,29 @@ requirements:
build:
- d2to1
- astropy >=1.1
+ - asdf
+ - crds
+ - cython
+ - drizzlepac
+ - gwcs
- jwst_lib
- - stsci.convolve
+ - matplotlib
+ - scipy
- stsci.distutils
- - numpy x.x
- setuptools
+ - numpy x.x
- python x.x
run:
- astropy >=1.1
+ - asdf
+ - crds
+ - cython
+ - drizzlepac
+ - gwcs
- jwst_lib
+ - matplotlib
+ - scipy
- numpy x.x
- - stsci.convolve
- python x.x
source:
git_url: ssh://git@bitbucket.org/stsci_ssb/jwst.git
diff --git a/jwst_tools/build.sh b/jwst_tools/build.sh
index 1883596..dc3b810 100644
--- a/jwst_tools/build.sh
+++ b/jwst_tools/build.sh
@@ -5,5 +5,9 @@ rm -rf jwst_tools/timeconversion
for d in jwst_tools/*
do
-( cd $d && python setup.py install || exit 1 )
-done \ No newline at end of file
+ if [[ $d == *spectools* ]]; then
+ # Indentation errors in package
+ continue
+ fi
+ ( cd $d && python setup.py install || exit 1 )
+done
diff --git a/jwst_tools/meta.yaml b/jwst_tools/meta.yaml
index ed1178f..3c53684 100644
--- a/jwst_tools/meta.yaml
+++ b/jwst_tools/meta.yaml
@@ -18,15 +18,25 @@ requirements:
build:
- d2to1
- astropy >=1.1
+ - jwst_lib
+ - matplotlib
+ - nose
+ - scipy
+ - six
- stsci.distutils
- stsci.tools
- - numpy x.x
- setuptools
+ - numpy x.x
- python x.x
run:
- astropy >=1.1
- - numpy x.x
+ - jwst_lib
+ - matplotlib
+ - nose
+ - scipy
+ - six
- stsci.tools
+ - numpy x.x
- python x.x
source:
git_url: ssh://git@bitbucket.org/stsci_ssb/jwst.git