diff options
| author | Larry Bradley <larry.bradley@gmail.com> | 2018-12-06 16:34:33 -0500 | 
|---|---|---|
| committer | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2018-12-06 16:34:33 -0500 | 
| commit | b3acf1438b8c8c61af77db04c4d4a5e3574d2da7 (patch) | |
| tree | 0b003ab806f0b3b037e8c8678595aa247efc39ab | |
| parent | 0a081a35fce2e13eeeb8fac791d2c2523c50cbf4 (diff) | |
| download | astroconda-contrib-b3acf1438b8c8c61af77db04c4d4a5e3574d2da7.tar.gz | |
Update specutils to v0.5.1 (#431)
* Update specutils to v0.5.1
* Update recipe
* Removed "noarch" directive
* Repair missing {{ python }} variable (required for build system)
* Add "skip"; Do not build for python 2.7
| -rw-r--r-- | specutils/meta.yaml | 16 | 
1 files changed, 11 insertions, 5 deletions
| diff --git a/specutils/meta.yaml b/specutils/meta.yaml index 5922bc0..37c5afd 100644 --- a/specutils/meta.yaml +++ b/specutils/meta.yaml @@ -1,7 +1,7 @@  {% set name = 'specutils' %} -{% set version = '0.2.2' %} +{% set version = '0.5.1' %}  {% set tag = 'v' + version %} -{% set number = '2' %} +{% set number = '0' %}  about:      home: https://github.com/astropy/specutils @@ -14,6 +14,7 @@ package:  build:      number: {{ number }} +    skip: true # [py27]  source:      git_tag: {{ tag }} @@ -22,22 +23,27 @@ source:  requirements:      build:      - astropy -    - cython      - scipy +    - gwcs +    - six      - setuptools      - numpy {{ numpy }}      - python {{ python }}      run:      - astropy      - scipy +    - gwcs +    - six      - numpy      - python  test:      imports:      - specutils +    - specutils.analysis +    - specutils.fitting      - specutils.io -    - specutils.models +    - specutils.manipulation +    - specutils.spectra      - specutils.utils      - specutils.wcs - | 
