From 77769ae6a8fdd9d1d9a2b5c07e73ab9bbab91f3b Mon Sep 17 00:00:00 2001 From: Dan D'Avella Date: Thu, 1 Feb 2018 10:19:39 -0500 Subject: Update specviz recipe to package dev version (#102) * Update specviz recipe to package dev version * Reset build revision (version reported is >2.0.0) --- specviz/meta.yaml | 18 ++++++++++++------ 1 file 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 -- cgit