diff options
author | Dan D'Avella <ddavella@stsci.edu> | 2018-03-07 00:57:54 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2018-03-07 00:57:54 -0500 |
commit | 92677c089d1a5b0ae5b44feb8f5c19a96d27980c (patch) | |
tree | 8a1d2f5239be1b15647505d8947278823439d62c /glue-core/meta.yaml | |
parent | 20bdd76a3cbcef18c0f947a67a3760d07cfc8b6a (diff) | |
download | astroconda-dev-92677c089d1a5b0ae5b44feb8f5c19a96d27980c.tar.gz |
Build glue-core from latest source (#114)
* Fix glue-core recipe to build from latest source
* Fix glue-core dependency in cubeviz
* Add recipe for mpl-scatter-density (dependency of glue-core)
* Add recipe for fast-histogram (dependency of mpl-scatter-density)
* AstroCondaify fast-histogram
* AstroCondaify mpl-scatter-density
* AstroCondaify glue-core
* glue-core: add mpl-scatter-density
Diffstat (limited to 'glue-core/meta.yaml')
-rw-r--r-- | glue-core/meta.yaml | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/glue-core/meta.yaml b/glue-core/meta.yaml index e4344e0..30ba4bc 100644 --- a/glue-core/meta.yaml +++ b/glue-core/meta.yaml @@ -1,5 +1,10 @@ +# Version has been faked! +# Replace with GIT_DESCRIBE_TAG when >=0.13.0 exists in the repository {% set name = 'glue-core' %} -{% set version = '0.12.0' %} +{% set version = "0.13.0" ~ ".dev" ~ GIT_DESCRIBE_NUMBER ~ "+" ~ GIT_DESCRIBE_HASH %} +{% if version[0] == 'v' %} +{% set version = version[1:] %} +{% endif %} {% set number = '1' %} package: @@ -7,9 +12,7 @@ package: version: {{ version }} source: - fn: {{ name }}-{{ version }}.tar.gz - url: https://pypi.io/packages/source/g/{{ name }}/{{ name }}-{{ version }}.tar.gz - sha256: db871285e9fe4ff0092d6803d573daa953ec9864b9128cd027cee97b2573e557 + git_url: https://github.com/glue-viz/glue.git build: number: {{ number }} @@ -40,6 +43,7 @@ requirements: - pandas >=0.14 - astropy >=1.3 - matplotlib >=1.4 + - mpl-scatter-density >=0.3 - qtpy >=1.2 - ipython >=4.0 - ipykernel |