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