diff options
author | Joe Hunkeler <jhunk@stsci.edu> | 2016-03-21 09:50:24 -0400 |
---|---|---|
committer | Joe Hunkeler <jhunk@stsci.edu> | 2016-03-21 09:50:24 -0400 |
commit | 9b7e90eb0234f74a986fdfa4299858b49898aee8 (patch) | |
tree | 72b1d1dd0fbf36010da1e3575da8c86f6e1cfdcc | |
parent | 93827d0b141afbf43780d28ed423173b0303289a (diff) | |
download | cbc-recipes-9b7e90eb0234f74a986fdfa4299858b49898aee8.tar.gz |
Fix syntax
-rw-r--r-- | jwst_lib/jwst_lib.ini | 2 | ||||
-rw-r--r-- | jwst_pipeline/jwst_pipeline.ini | 6 | ||||
-rw-r--r-- | jwst_tools/jwst_tools.ini | 2 |
3 files changed, 7 insertions, 3 deletions
diff --git a/jwst_lib/jwst_lib.ini b/jwst_lib/jwst_lib.ini index f3c564e..c62975c 100644 --- a/jwst_lib/jwst_lib.ini +++ b/jwst_lib/jwst_lib.ini @@ -1,6 +1,6 @@ [package] name : jwst_lib -version : {{ environ.get("GIT_DESCRIBE_TAG", "0.0.0") } +version : {{ environ.get("GIT_DESCRIBE_TAG", "0.0.0") }} [about] # The JWST repo layout is different: One repo for many packages. diff --git a/jwst_pipeline/jwst_pipeline.ini b/jwst_pipeline/jwst_pipeline.ini index 6cfe3c6..376fd8d 100644 --- a/jwst_pipeline/jwst_pipeline.ini +++ b/jwst_pipeline/jwst_pipeline.ini @@ -1,6 +1,6 @@ [package] name : jwst_pipeline -version : {{ environ.get("GIT_DESCRIBE_TAG", "0.0.0") } +version : {{ environ.get("GIT_DESCRIBE_TAG", "0.0.0") }} [about] # The JWST repo layout is different: One repo for many packages. @@ -45,6 +45,10 @@ commands : [cbc_build] linux : pip install --no-deps --force --upgrade d2to1 + + # For now... + rm -rf jwst_pipeline/timeconversion + for d in jwst_pipeline/* do ( cd $$d && python setup.py install || exit 1 ) diff --git a/jwst_tools/jwst_tools.ini b/jwst_tools/jwst_tools.ini index bde24f9..fa0be42 100644 --- a/jwst_tools/jwst_tools.ini +++ b/jwst_tools/jwst_tools.ini @@ -1,6 +1,6 @@ [package] name : jwst_tools -version : {{ environ.get("GIT_DESCRIBE_TAG", "0.0.0") } +version : {{ environ.get("GIT_DESCRIBE_TAG", "0.0.0") }} [about] # The JWST repo layout is different: One repo for many packages. |