diff options
| author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2016-11-01 16:28:01 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-11-01 16:28:01 -0400 | 
| commit | 6f5fc6199e4df6819a8fdffe98d84365734b0ada (patch) | |
| tree | bb966badc0d54a415af7b9a4e9460fa7b3f0914d | |
| parent | a81f18979188ba7b5a4c60be2fe0a48125e1212f (diff) | |
| download | astroconda-contrib-6f5fc6199e4df6819a8fdffe98d84365734b0ada.tar.gz | |
Update imexam -> 0.6.2 (#90)
| -rw-r--r-- | imexam/bld.bat | 8 | ||||
| -rw-r--r-- | imexam/build.sh | 8 | ||||
| -rw-r--r-- | imexam/meta.yaml | 50 | 
3 files changed, 32 insertions, 34 deletions
| diff --git a/imexam/bld.bat b/imexam/bld.bat index f300b17..762d43b 100644 --- a/imexam/bld.bat +++ b/imexam/bld.bat @@ -1,7 +1 @@ - -pip install --no-deps --upgrade --force d2to1 -if errorlevel 1 exit 1 -pip install --no-deps --upgrade --force astropy_helpers || exit 1 -if errorlevel 1 exit 1 -python setup.py install --offline -if errorlevel 1 exit 1
\ No newline at end of file +python setup.py install diff --git a/imexam/build.sh b/imexam/build.sh index 70f3a36..5a5aeeb 100644 --- a/imexam/build.sh +++ b/imexam/build.sh @@ -1,7 +1 @@ - -echo This d2to1 hack is deadly. -pip install --no-deps --upgrade --force d2to1 || exit 1 -pip install --no-deps --upgrade --force astropy_helpers || exit 1 -sed -i -e 's|find-links|#find-links|g' setup.cfg -sed -i -e 's|auto_use|#auto_use|g' setup.cfg -python setup.py install || exit 1
\ No newline at end of file +$PYTHON setup.py install diff --git a/imexam/meta.yaml b/imexam/meta.yaml index 0fa1154..32a5d96 100644 --- a/imexam/meta.yaml +++ b/imexam/meta.yaml @@ -1,39 +1,49 @@ +{% set name = 'imexam' %} +{% set version = '0.6.2' %} +{% set tag = 'v' + version %} +{% set number = '0' %} +  about: -    home: https://github.com/spacetelescope/imexam +    home: https://github.com/spacetelescope/{{name}}      license: BSD -    readme: README.rst -    summary: imexam +    summary: | +        Designed to be a lightweight library which enables users to explore +        data from a command line interface, through a Jupyter notebook or +        through a Jupyter console. It can be used with multiple viewers, +        such as DS9 or Ginga, or without a viewer as a simple library to make +        plots and grab quick photometry information. +  build: -    number: '0' +    number: {{number}} +  package: -    name: imexam -    version: 0.5.2 +    name: {{name}} +    version: {{version}} +  requirements:      build: -    - d2to1 -    - nose      - astropy >=1.1 -    - numpy x.x -    - scipy      - cython -    - matplotlib -    - ipython +    - pytest      - setuptools -    - mock [py27] +    - numpy x.x      - python x.x      run: -    - d2to1 -    - nose      - astropy >=1.1 -    - numpy x.x -    - scipy      - cython -    - matplotlib +    - ginga      - ipython -    - mock [py27] +    - notebook +    - photutils +    - matplotlib +    - scipy +    - numpy x.x      - python x.x +  source: -    git_url: https://github.com/spacetelescope/imexam +    git_tag: {{tag}} +    git_url: https://github.com/spacetelescope/{{name}}.git +  test:      imports:      - imexam | 
