diff options
Diffstat (limited to 'acstools')
| -rw-r--r-- | acstools/build.sh | 3 | ||||
| -rw-r--r-- | acstools/meta.yaml | 18 | 
2 files changed, 12 insertions, 9 deletions
| diff --git a/acstools/build.sh b/acstools/build.sh index 5e8b365..783f064 100644 --- a/acstools/build.sh +++ b/acstools/build.sh @@ -1,4 +1,3 @@ -  echo This d2to1 hack is deadly.  pip install --no-deps --upgrade --force d2to1 || exit 1 -python setup.py install || exit 1
\ No newline at end of file +python setup.py install || exit 1 diff --git a/acstools/meta.yaml b/acstools/meta.yaml index 3664fb4..21b1e48 100644 --- a/acstools/meta.yaml +++ b/acstools/meta.yaml @@ -1,12 +1,16 @@ +{% set name = 'acstools' %} +{% set version = '2.0.2' %} +{% set number = '0' %} +  about: -    home: http://www.stsci.edu/institute/software_hardware/pyraf/stsci_python +    home: https://github.com/spacetelescope/{{ name }}      license: BSD -    summary: acstools +    summary: For analyzing ACS data  build: -    number: '0' +    number: {{ number }}  package: -    name: acstools -    version: 2.0.0 +    name: {{ name }} +    version: {{ version }}  requirements:      build:      - d2to1 @@ -31,8 +35,8 @@ requirements:      - setuptools      - python x.x  source: -    git_tag: 2.0.0 -    git_url: https://github.com/spacetelescope/acstools +    git_tag: {{ version }} +    git_url: https://github.com/spacetelescope/{{ name }}.git  test:      commands:      - acs_destripe --help | 
