diff options
Diffstat (limited to 'photutils/meta.yaml')
-rw-r--r-- | photutils/meta.yaml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/photutils/meta.yaml b/photutils/meta.yaml index a0be16b..4e40235 100644 --- a/photutils/meta.yaml +++ b/photutils/meta.yaml @@ -1,7 +1,10 @@ {% set name = 'photutils' %} {% set version = '0.4' %} +{% if version[0] == 'v' %} +{% set version = version[1:] %} +{% endif %} {% set tag = 'v' + version %} -{% set number = '0' %} +{% set number = '1' %} about: home: https://github.com/astropy/{{ name }} @@ -26,7 +29,7 @@ requirements: - scipy >=0.16 - six - setuptools - - python x.x + - python {{ python }} run: - astropy >=2.0 - cython @@ -37,7 +40,7 @@ requirements: - scipy >=0.16 - six - setuptools - - python x.x + - python source: git_tag: {{ tag }} |