diff options
| author | Joseph Hunkeler <jhunk@stsci.edu> | 2016-04-02 19:25:09 -0400 | 
|---|---|---|
| committer | Joseph Hunkeler <jhunk@stsci.edu> | 2016-04-19 11:17:27 -0400 | 
| commit | 2ff7bbe733c9837a13a0762bb8a48e04de9e296d (patch) | |
| tree | 1b8be48d6c3b71fd7c0d679d3301ab10d20e6d47 /pyds9 | |
| parent | 4b8dfd8d91499caf0df1182fd010c946f4a01773 (diff) | |
| download | astroconda-dev-2ff7bbe733c9837a13a0762bb8a48e04de9e296d.tar.gz | |
Incorporate jinja2 usage
Diffstat (limited to 'pyds9')
| -rw-r--r-- | pyds9/meta.yaml | 12 | 
1 files changed, 8 insertions, 4 deletions
| diff --git a/pyds9/meta.yaml b/pyds9/meta.yaml index 2c8f77d..617732c 100644 --- a/pyds9/meta.yaml +++ b/pyds9/meta.yaml @@ -1,12 +1,16 @@ +{% set name = 'pyds9' %} +{% set version = '1.8.1' %} +{% set number = '0' %} +  about:      home: https://github.com/ericmandel/pyds9      license: GPL      summary: Python connection to SAOimage DS9 via XPA  build: -    number: '0' +    number: {{ number }}  package: -    name: pyds9 -    version: 1.8.1 +    name: {{ name }} +    version: {{ version }}  requirements:      build:      - xpa @@ -22,7 +26,7 @@ requirements:      - numpy x.x      - python x.x  source: -    git_tag: v1.8 +    git_tag: {{ version }}      git_url: https://github.com/ericmandel/pyds9  test:      imports: | 
