diff options
-rw-r--r-- | wfc3tools/bld.bat | 6 | ||||
-rw-r--r-- | wfc3tools/build.sh | 5 | ||||
-rw-r--r-- | wfc3tools/meta.yaml | 32 |
3 files changed, 19 insertions, 24 deletions
diff --git a/wfc3tools/bld.bat b/wfc3tools/bld.bat index 695f708..2d6c912 100644 --- a/wfc3tools/bld.bat +++ b/wfc3tools/bld.bat @@ -1,6 +1,2 @@ - -pip install --no-deps --upgrade --force d2to1 -if errorlevel 1 exit 1 - python setup.py install -if errorlevel 1 exit 1
\ No newline at end of file +if errorlevel 1 exit 1 diff --git a/wfc3tools/build.sh b/wfc3tools/build.sh index 60e0bea..5c61be1 100644 --- a/wfc3tools/build.sh +++ b/wfc3tools/build.sh @@ -1,4 +1 @@ - -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/wfc3tools/meta.yaml b/wfc3tools/meta.yaml index 23c6c12..5804666 100644 --- a/wfc3tools/meta.yaml +++ b/wfc3tools/meta.yaml @@ -1,33 +1,35 @@ +{% set name = 'wfc3tools' %} +{% set version = '1.3.3' %} +{% set number = '0' %} + about: - home: http:// + home: https://github.com/spacetelescope/{{ name }} license: BSD - summary: wfc3tools + summary: For analyzing and calibrating HST-WFC3 data build: - number: '0' + number: {{ number }} package: - name: wfc3tools - version: 1.3.1 + name: {{ name }} + version: {{ version }} requirements: build: - - d2to1 - - stsci.distutils - - stsci.tools - astropy >=1.1 - - matplotlib - numpy x.x - - scipy - setuptools - python x.x - run: + - matplotlib + - scipy - stsci.tools + run: - astropy >=1.1 - - matplotlib - numpy x.x - - scipy - python x.x + - stsci.tools + - matplotlib + - scipy source: - git_tag: 1.3.1 - git_url: https://github.com/spacetelescope/wfc3tools + git_tag: {{ version }} + git_url: https://github.com/spacetelescope/{{ name }}.git test: imports: - wfc3tools |