diff options
Diffstat (limited to 'ginga/meta.yaml')
-rw-r--r-- | ginga/meta.yaml | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/ginga/meta.yaml b/ginga/meta.yaml index 79fb1ba..e598f09 100644 --- a/ginga/meta.yaml +++ b/ginga/meta.yaml @@ -1,7 +1,10 @@ {% set name = 'ginga' %} {% set version = '2.6.6' %} -{% set tag = 'v2.6.6' %} -{% set number = '0' %} +{% if version[0] == 'v' %} +{% set version = version[1:] %} +{% endif %} +{% set tag = 'v' ~ version %} +{% set number = '1' %} about: home: https://github.com/ejeschke/{{ name }} @@ -21,14 +24,14 @@ requirements: - qtpy - pillow - setuptools - - numpy - - python x.x + - numpy {{ numpy }} + - python {{ python }} run: - astropy >=1.2 - qtpy - pillow - numpy - - python x.x + - python source: git_tag: {{ tag }} |