diff options
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 |