diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2016-06-28 10:23:34 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-28 10:23:34 -0400 |
commit | c8cf7e92f27e2d6e65a2e989d5453a0f9c1f8d55 (patch) | |
tree | aed9a8c9739788a1d1d58b5ca091411dd0fb7efe | |
parent | 4e8b0ab79589fd957f0f1a554583dd9c688f1ff5 (diff) | |
download | astroconda-contrib-c8cf7e92f27e2d6e65a2e989d5453a0f9c1f8d55.tar.gz |
Update ginga (#19)
* ginga release pending
* stginga release pending
* Update ginga package versions
* Update ginga to latest release
-rw-r--r-- | ginga/meta.yaml | 24 | ||||
-rw-r--r-- | stginga/meta.yaml | 22 |
2 files changed, 28 insertions, 18 deletions
diff --git a/ginga/meta.yaml b/ginga/meta.yaml index 7a74291..a8de0b9 100644 --- a/ginga/meta.yaml +++ b/ginga/meta.yaml @@ -1,25 +1,29 @@ +{% set name = 'ginga' %} +{% set version = '2.5.20160627100500' %} +{% set rev = '25d6608b' %} +{% set number = '0' %} about: - home: https://github.com/ejeschke/ginga + home: https://github.com/ejeschke/{{ name }} license: BSD - summary: ginga + summary: FITS file viewer build: - number: '0' + number: {{ number }} package: - name: ginga - version: 2.5.20151215011852 + name: {{ name }} + version: {{ version }} requirements: build: - - numpy x.x + - astropy >=1.2 - setuptools + - numpy x.x - python x.x run: + - astropy >=1.2 - numpy x.x - python x.x source: - fn: ginga-2.5.20151215011852.tar.gz - md5: 11cd8b9ed459c4438cc827e0a1ca4538 - url: - - https://pypi.python.org/packages/source/g/ginga/ginga-2.5.20151215011852.tar.gz + git_rev: {{ rev }} + git_url: https://github.com/ejeschke/{{ name }}.git test: imports: - ginga diff --git a/stginga/meta.yaml b/stginga/meta.yaml index 4e86c0f..fafa46a 100644 --- a/stginga/meta.yaml +++ b/stginga/meta.yaml @@ -1,28 +1,34 @@ +{% set name = 'stginga' %} +{% set version = '0.1' %} +{% set tag = version %} +{% set number = '0' %} + about: - home: https://github.com/spacetelescope/stginga + home: https://github.com/spacetelescope/{{ name }} license: BSD - summary: stginga + summary: Ginga products specific to STScI data analysis build: - number: '{{ environ.get("GIT_DESCRIBE_NUMBER", 0) }}' + number: {{ number }} package: - name: stginga - version: '{{ environ.get("GIT_DESCRIBE_TAG", "0.0.0") }}' + name: {{ name }} + version: {{ version }} requirements: build: - ginga - - astropy >=1.1 + - astropy >=1.2 - numpy x.x - scipy - setuptools - python x.x run: - ginga - - astropy >=1.1 + - astropy >=1.2 - numpy x.x - scipy - python x.x source: - git_url: https://github.com/spacetelescope/stginga + git_tag: {{ tag }} + git_url: https://github.com/spacetelescope/{{ name }}.git test: imports: - stginga |