diff options
author | Dan D'Avella <ddavella@stsci.edu> | 2018-02-01 10:19:39 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2018-02-01 10:19:39 -0500 |
commit | 77769ae6a8fdd9d1d9a2b5c07e73ab9bbab91f3b (patch) | |
tree | 853c8cf6a4270104747aac0724c7e4d49ecf4936 /specviz | |
parent | 544c455370adec8e60f329538e720e5a12ca0e29 (diff) | |
download | astroconda-dev-77769ae6a8fdd9d1d9a2b5c07e73ab9bbab91f3b.tar.gz |
Update specviz recipe to package dev version (#102)
* Update specviz recipe to package dev version
* Reset build revision (version reported is >2.0.0)
Diffstat (limited to 'specviz')
-rw-r--r-- | specviz/meta.yaml | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/specviz/meta.yaml b/specviz/meta.yaml index 443f7e3..0b2b5e5 100644 --- a/specviz/meta.yaml +++ b/specviz/meta.yaml @@ -1,7 +1,9 @@ {% set name = 'specviz' %} -{% set version = '0.2.1rc5' %} -{% set tag = 'v' + version %} -{% set number = '2' %} +{% set version = GIT_DESCRIBE_TAG ~ ".dev" ~ GIT_DESCRIBE_NUMBER ~ "+" ~ GIT_DESCRIBE_HASH %} +{% if version[0] == 'v' %} +{% set version = version[1:] %} +{% endif %} +{% set number = '0' %} about: home: https://github.com/spacetelescope/specviz @@ -15,18 +17,20 @@ package: version: {{ version }} source: - git_tag: {{ tag }} git_url: https://github.com/spacetelescope/specviz.git requirements: build: - astropy - cython + - docopt - specutils + - py-expression-eval - pyyaml - pyqtgraph >=0.9.11 - - pyqt + - qtpy - scipy + - spectral-cube - yaml - setuptools - numpy {{ numpy }} @@ -36,10 +40,12 @@ requirements: - astropy - cython - specutils + - py-expression-eval - pyyaml - pyqtgraph >=0.9.11 - - pyqt + - qtpy - scipy + - spectral-cube - yaml - numpy - python |