diff options
| author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2016-08-15 23:09:28 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-08-15 23:09:28 -0400 | 
| commit | a569559e3a4c324b9c7c5bb659a6b86cf3d91350 (patch) | |
| tree | ca603d5707fad6a372b4d54db89c4aa85f7d5847 /drizzlepac | |
| parent | 3fcc978bcfe37905b44d8b87755b6d6b558f4372 (diff) | |
| download | astroconda-contrib-a569559e3a4c324b9c7c5bb659a6b86cf3d91350.tar.gz | |
Remove astrolib.coords references; Bump stsci-hst 1.0.4 (#53)
* Remove astrolib.coords references; Bump stsci-hst 1.0.4
* Bump drizzlepac 2.1.5 -> 2.1.6
* Modernize drizzlepac recipe
Diffstat (limited to 'drizzlepac')
| -rw-r--r-- | drizzlepac/build.sh | 3 | ||||
| -rw-r--r-- | drizzlepac/meta.yaml | 18 | 
2 files changed, 12 insertions, 9 deletions
| diff --git a/drizzlepac/build.sh b/drizzlepac/build.sh index 76f1510..3bc9ae7 100644 --- a/drizzlepac/build.sh +++ b/drizzlepac/build.sh @@ -1,5 +1,4 @@  echo This d2to1 hack is deadly.  pip install --no-deps --upgrade --force d2to1 || exit 1 -test -f setup.cfg && sed -i -e '/astrolib\.coords.*/d' setup.cfg -python setup.py install || exit 1
\ No newline at end of file +python setup.py install || exit 1 diff --git a/drizzlepac/meta.yaml b/drizzlepac/meta.yaml index ca9acb4..a689459 100644 --- a/drizzlepac/meta.yaml +++ b/drizzlepac/meta.yaml @@ -1,12 +1,16 @@ +{% set name = 'drizzlepac' %} +{% set version = '2.1.6' %} +{% set number = '0' %} +  about: -    home: http://www.stsci.edu/institute/software_hardware/pyraf/stsci_python +    home: https://github.com/spacetelescope/drizzlepac      license: BSD -    summary: drizzlepac +    summary: AstroDrizzle for HST images  build: -    number: '0' +    number: {{ number }}  package: -    name: drizzlepac -    version: 2.1.5 +    name: {{ name }} +    version: {{ version }}  requirements:      build:      - astropy >=1.1 @@ -46,8 +50,8 @@ requirements:      - setuptools      - python x.x  source: -    git_tag: 2.1.5 -    git_url: https://github.com/spacetelescope/drizzlepac +    git_tag: {{ version }} +    git_url: https://github.com/spacetelescope/drizzlepac.git  test:      imports:      - drizzlepac | 
