diff options
| author | Matt Rendina <rendinam@users.noreply.github.com> | 2017-10-24 13:48:53 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-10-24 13:48:53 -0400 | 
| commit | 008fc66bb92207e98d16642ab4a6cd1b706927ec (patch) | |
| tree | 0d3d5396adacc050ccef69b6e8b2d0350268e1ef | |
| parent | 130038425e3dfbf2fef9ecdcdd89571ed26460e3 (diff) | |
| parent | 5a88a3bcc77c028eb40e1fff5aecce85d4c3e2da (diff) | |
| download | astroconda-contrib-008fc66bb92207e98d16642ab4a6cd1b706927ec.tar.gz | |
Merge pull request #272 from drdavella/update-asdf-v1.3.0
Update for asdf v1.3.0 release
| -rw-r--r-- | asdf/meta.yaml | 11 | 
1 files changed, 7 insertions, 4 deletions
| diff --git a/asdf/meta.yaml b/asdf/meta.yaml index f69431d..a2eaf3c 100644 --- a/asdf/meta.yaml +++ b/asdf/meta.yaml @@ -1,5 +1,6 @@  {% set name = 'asdf' %} -{% set version = '1.2.1' %} +{% set version = '1.3.0' %} +{% set tag = 'v' + version %}  {% set number = '1' %}  about: @@ -16,7 +17,8 @@ package:  requirements:      build: -    - astropy >=1.1 +    - semantic_version >=2.6 +    - astropy >=1.3      - pyyaml      - jsonschema      - pytest @@ -25,7 +27,8 @@ requirements:      - numpy      - python x.x      run: -    - astropy >=1.1 +    - semantic_version >=2.6 +    - astropy >=1.3      - pyyaml      - jsonschema      - pytest @@ -35,7 +38,7 @@ requirements:      - python x.x  source: -    git_tag: {{ version }} +    git_tag: {{ tag }}      git_url: https://github.com/spacetelescope/{{ name }}.git  test: | 
