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 /pyqtgraph | |
| parent | 4b8dfd8d91499caf0df1182fd010c946f4a01773 (diff) | |
| download | astroconda-dev-2ff7bbe733c9837a13a0762bb8a48e04de9e296d.tar.gz | |
Incorporate jinja2 usage
Diffstat (limited to 'pyqtgraph')
| -rw-r--r-- | pyqtgraph/meta.yaml | 14 | 
1 files changed, 9 insertions, 5 deletions
diff --git a/pyqtgraph/meta.yaml b/pyqtgraph/meta.yaml index 92d8ac1..ae47c7f 100644 --- a/pyqtgraph/meta.yaml +++ b/pyqtgraph/meta.yaml @@ -1,12 +1,16 @@ +{% set name = 'pyqtgraph' %} +{% set version = '0.9.10' %} +{% set number = '0' %} +  about:      home: http://www.pyqtgraph.org/      license: MIT      summary: pyqtgraph  build: -    number: '0' +    number: {{ number }}  package: -    name: pyqtgraph -    version: 0.9.10 +    name: {{ name }} +    version: {{ version }}  requirements:      build:      - setuptools @@ -17,10 +21,10 @@ requirements:      - numpy x.x      - python x.x  source: -    fn: pyqtgraph-0.9.10.tar.gz +    fn: {{ name }}-{{ version }}.tar.gz      md5: bd84bf7537c43cf38db81cc1ad4f743a      url: -    - https://pypi.python.org/packages/source/p/pyqtgraph/pyqtgraph-0.9.10.tar.gz +    - https://pypi.python.org/packages/source/p/pyqtgraph/{{ name }}-{{ version }}.tar.gz  test:      imports:      - pyqtgraph  | 
