diff options
| author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2016-08-28 11:40:47 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-08-28 11:40:47 -0400 | 
| commit | e5a1efe9e32341566ad49b7c271e46ab68726474 (patch) | |
| tree | 6d59fccf57e9d7594d05812e077d4a39ea7c27a8 | |
| parent | 2c0ba2c39f6253727751c9ef3e6e8863b014772f (diff) | |
| download | astroconda-contrib-e5a1efe9e32341566ad49b7c271e46ab68726474.tar.gz | |
pandokia: use https and revamp recipe (#59)
| -rw-r--r-- | pandokia/meta.yaml | 14 | 
1 files changed, 9 insertions, 5 deletions
| diff --git a/pandokia/meta.yaml b/pandokia/meta.yaml index ed9b26b..0d6466a 100644 --- a/pandokia/meta.yaml +++ b/pandokia/meta.yaml @@ -1,12 +1,16 @@ +{% set name = 'pandokia' %} +{% set version = '1.3.11' %} +{% set number = '0' %} +  about:      home: http://ssb.stsci.edu/testing/pandokia      license: BSD -    summary: pandokia +    summary: A test running/reporting facility  build: -    number: '{{ environ.get("GIT_DESCRIBE_NUMBER", 0) }}' +    number: {{ number }}  package: -    name: pandokia -    version: 1.3.11 +    name: {{ name }} +    version: {{ version }}  requirements:      build:      - nose @@ -20,7 +24,7 @@ requirements:      - pytest      - python x.x  source: -    git_url: git@github.com:spacetelescope/pandokia +    git_url: https://github.com/spacetelescope/pandokia.git  test:      commands:      - pdk --help | 
