diff options
author | P. L. Lim <lim@stsci.edu> | 2016-08-03 18:12:47 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2016-08-03 18:12:47 -0400 |
commit | 9f112bee9b72cf48978fddcb08aa043d8cf92284 (patch) | |
tree | e68e6189c0c63f8be8d1d2a5a081bab93fb2d838 /reftools | |
parent | 85302dff3064a18b0e593ace2683488a8e60f853 (diff) | |
download | astroconda-contrib-9f112bee9b72cf48978fddcb08aa043d8cf92284.tar.gz |
Update reftools to 1.7.2 (#48)
Diffstat (limited to 'reftools')
-rw-r--r-- | reftools/bld.bat | 6 | ||||
-rw-r--r-- | reftools/build.sh | 5 | ||||
-rw-r--r-- | reftools/meta.yaml | 38 |
3 files changed, 18 insertions, 31 deletions
diff --git a/reftools/bld.bat b/reftools/bld.bat index d1ddf28..af492e4 100644 --- a/reftools/bld.bat +++ b/reftools/bld.bat @@ -1,7 +1,3 @@ -echo This d2to1 hack is deadly. -pip install --no-deps --upgrade --force d2to1 -if errorlevel 1 exit 1 - python setup.py install || exit 1 -if errorlevel 1 exit 1
\ No newline at end of file +if errorlevel 1 exit 1 diff --git a/reftools/build.sh b/reftools/build.sh index 5e8b365..5c61be1 100644 --- a/reftools/build.sh +++ b/reftools/build.sh @@ -1,4 +1 @@ - -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/reftools/meta.yaml b/reftools/meta.yaml index 257aa9f..38f7bec 100644 --- a/reftools/meta.yaml +++ b/reftools/meta.yaml @@ -1,37 +1,31 @@ +{% set name = 'reftools' %} +{% set version = '1.7.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: reftools + summary: For HST reference files build: - number: '1' - preserve_egg_dir: 'yes' + number: {{ number }} package: - name: reftools - version: 1.7.1 + name: {{ name }} + version: {{ version }} requirements: build: - - d2to1 - - stsci.distutils - - stsci.imagestats - - stsci.tools - - pysynphot - - stwcs - - calcos - - scipy + - astropy >=1.1 - numpy x.x - - setuptools - python x.x + - setuptools run: - - stsci.imagestats - - stsci.tools - - pysynphot - - stwcs - - calcos - - scipy + - astropy >=1.1 - numpy x.x - python x.x source: - git_url: https://github.com/spacetelescope/reftools + git_tag: {{ version }} + git_url: https://github.com/spacetelescope/{{ name }}.git test: + commands: + - tdspysyn --help imports: - reftools |