diff options
| author | Matt Rendina <rendinam@users.noreply.github.com> | 2018-04-23 09:47:36 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-04-23 09:47:36 -0400 | 
| commit | 392a868d05cb95374478a5086849c8d6a968600b (patch) | |
| tree | 1478300377870c9f2627fb249177817b4a291764 | |
| parent | 291958c1d5b337c5f9ee5b2153fc7cd81d16fc3c (diff) | |
| parent | 76a4a5878942e75aa179c656a37b70f3e4973c07 (diff) | |
| download | astroconda-contrib-392a868d05cb95374478a5086849c8d6a968600b.tar.gz | |
Merge pull request #344 from drdavella/asdf-2.0.0
Update ASDF recipe for v2.0.0 release
| -rw-r--r-- | asdf/meta.yaml | 14 | 
1 files changed, 7 insertions, 7 deletions
| diff --git a/asdf/meta.yaml b/asdf/meta.yaml index 2b3a3de..342950d 100644 --- a/asdf/meta.yaml +++ b/asdf/meta.yaml @@ -1,6 +1,8 @@  {% set name = 'asdf' %} -{% set version = '1.3.3' %} -{% set number = '3' %} +{% set version = '2.0.0' %} +{% set hash_type = "sha256" %} +{% set hash_value = "dcdb00b3e00bb9c29efad5ce68002679ffc653d55d8799f8037c491cc0e91d66" %} +{% set number = '0' %}  about:      home: https://github.com/spacetelescope/{{ name }} @@ -17,17 +19,14 @@ package:  requirements:      build:      - semantic_version >=2.3.1 -    - astropy >=1.3      - pyyaml      - jsonschema -    - pytest      - six      - setuptools      - numpy {{ numpy }}      - python {{ python }}      run:      - semantic_version >=2.3.1 -    - astropy >=1.3      - pyyaml      - jsonschema      - pytest @@ -37,8 +36,9 @@ requirements:      - python  source: -    git_tag: {{ version }} -    git_url: https://github.com/spacetelescope/{{ name }}.git +  fn: '{{ name }}-{{ version }}.tar.gz' +  url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz +  '{{ hash_type }}': '{{ hash_value }}'  test:      commands: | 
