diff options
Diffstat (limited to 'ginga')
-rw-r--r-- | ginga/bld.bat | 3 | ||||
-rw-r--r-- | ginga/build.sh | 2 | ||||
-rw-r--r-- | ginga/meta.yaml | 13 |
3 files changed, 10 insertions, 8 deletions
diff --git a/ginga/bld.bat b/ginga/bld.bat index b290566..760380e 100644 --- a/ginga/bld.bat +++ b/ginga/bld.bat @@ -1,3 +1,2 @@ -python setup.py install -if errorlevel 1 exit 1
\ No newline at end of file +%PYTHON% setup.py install diff --git a/ginga/build.sh b/ginga/build.sh index d0bc088..e8d6a8f 100644 --- a/ginga/build.sh +++ b/ginga/build.sh @@ -1,3 +1,3 @@ echo > README.txt -python setup.py install || exit 1
\ No newline at end of file +$PYTHON setup.py install
\ No newline at end of file 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 }} |