diff options
| author | Matt Rendina <rendinam@users.noreply.github.com> | 2019-09-24 14:34:58 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-09-24 14:34:58 -0400 | 
| commit | 2a07842ea7b5e0244b550645da708b9f409367be (patch) | |
| tree | 906a9ee0bf5017272fdc9cd628096cb286dea21d /asdf | |
| parent | 39e25c452faa97764938b7a6739bc9065047a426 (diff) | |
| download | astroconda-contrib-2a07842ea7b5e0244b550645da708b9f409367be.tar.gz | |
Add semantic_version to support py36 build of asdf; update asdf recipe to build. (#562)
Diffstat (limited to 'asdf')
| -rw-r--r-- | asdf/meta.yaml | 8 | 
1 files changed, 5 insertions, 3 deletions
diff --git a/asdf/meta.yaml b/asdf/meta.yaml index b6f56d0..9215e7d 100644 --- a/asdf/meta.yaml +++ b/asdf/meta.yaml @@ -1,5 +1,5 @@  {% set name = 'asdf' %} -{% set version = '2.3.3' %} +{% set version = '2.4.0' %}  {% set number = '0' %}  about: @@ -19,18 +19,20 @@ requirements:      build:      - semantic_version >=2.3.1      - pyyaml >=3.10 -    - jsonschema >=2.3,<=2.6 +    - jsonschema >=2.3,<4.0      - six >=1.9.0      - setuptools +    - setuptools_scm      - numpy {{ numpy }}      - python {{ python }}      run:      - semantic_version >=2.3.1      - pyyaml >=3.10 -    - jsonschema >=2.3,<=2.6 +    - jsonschema >=2.3,<4.0      - pytest      - six >=1.9.0      - setuptools +    - setuptools_scm      - numpy      - python  | 
