diff options
| author | P. L. Lim <lim@stsci.edu> | 2017-03-31 15:24:43 -0400 | 
|---|---|---|
| committer | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2017-03-31 15:24:43 -0400 | 
| commit | 900050599a0d3eb639e7e514478ded4da643faa9 (patch) | |
| tree | 39b417c00f4a7d55a4b954c2044f93cc1f74a82c | |
| parent | 503ae2526ff1adb8be09637d496df9d8385ff312 (diff) | |
| download | astroconda-contrib-900050599a0d3eb639e7e514478ded4da643faa9.tar.gz | |
Update Astroquery to 0.3.5 (#186)
* Update Astroquery to 0.3.5
* Use git instead of PyPi
Tag uses 'v' prefix, so account for it.
| -rw-r--r-- | astroquery/meta.yaml | 11 | 
1 files changed, 6 insertions, 5 deletions
| diff --git a/astroquery/meta.yaml b/astroquery/meta.yaml index be5bc95..70d5039 100644 --- a/astroquery/meta.yaml +++ b/astroquery/meta.yaml @@ -1,9 +1,10 @@  {% set name = 'astroquery' %} -{% set version = '0.3.3' %} +{% set version = '0.3.5' %} +{% set tag = 'v' + version %}  {% set number = '0' %}  about: -    home: https://github.com/spacetelescope/{{ name }} +    home: https://github.com/astropy/{{ name }}      license: BSD      summary: Astroquery is a set of tools for querying astronomical web forms and databases. @@ -12,9 +13,8 @@ package:      version: {{ version }}  source: -  fn: {{ name }}-{{ version }}.tar.gz -  url: https://pypi.io/packages/source/a/{{ name }}/{{ name }}-{{ version }}.tar.gz -  md5: 1be83c630fcb462a711eb9c2eda0fbea +    git_url: https://github.com/astropy/{{ name }} +    git_tag: {{ tag }}  build:      number: {{ number }} @@ -28,6 +28,7 @@ requirements:      - html5lib      - setuptools      - python x.x +          run:      - astropy      - requests | 
