diff options
Diffstat (limited to 'astroquery')
-rw-r--r-- | astroquery/bld.bat | 2 | ||||
-rw-r--r-- | astroquery/meta.yaml | 9 |
2 files changed, 7 insertions, 4 deletions
diff --git a/astroquery/bld.bat b/astroquery/bld.bat index 762d43b..39b5e1f 100644 --- a/astroquery/bld.bat +++ b/astroquery/bld.bat @@ -1 +1 @@ -python setup.py install +%PYTHON% setup.py install diff --git a/astroquery/meta.yaml b/astroquery/meta.yaml index fff326e..0f10d5f 100644 --- a/astroquery/meta.yaml +++ b/astroquery/meta.yaml @@ -1,7 +1,10 @@ {% set name = 'astroquery' %} -{% set version = '0.3.5' %} +{% set version = '0.3.7' %} +{% 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 }} @@ -28,7 +31,7 @@ requirements: - html5lib - secretstorage [linux] - setuptools - - python + - python {{ python }} run: - astropy |