diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2018-08-13 16:39:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-13 16:39:46 -0400 |
commit | 64aec9f4786efda7430afde69f5a6521dfa482ce (patch) | |
tree | 8375da69e3da255c1a211bdeed324fe01d45885e /stsci-data-analysis | |
parent | 5178ca4e8679fad8528f338081e06719c2bd4b2f (diff) | |
download | astroconda-dev-64aec9f4786efda7430afde69f5a6521dfa482ce.tar.gz |
Tie each metapackage to its respective python version (#157)
Diffstat (limited to 'stsci-data-analysis')
-rw-r--r-- | stsci-data-analysis/meta.yaml | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/stsci-data-analysis/meta.yaml b/stsci-data-analysis/meta.yaml index d8286f2..0178acf 100644 --- a/stsci-data-analysis/meta.yaml +++ b/stsci-data-analysis/meta.yaml @@ -1,6 +1,6 @@ {% set name = 'stsci-data-analysis' %} {% set version = '0.0.0dev.0' %} -{% set number = '3' %} +{% set number = '4' %} about: home: http://stsci.edu @@ -15,15 +15,19 @@ package: version: {{ version }} requirements: + build: + - numpy {{ numpy }} + - python {{ python }} + run: - - astropy >=*0.0* - - astroimtools >=*0.0* - - stginga >=*0.0* - - specviz >=*0.0* - - photutils >=*0.0* - - glueviz >=*0.0* - - imexam >=*0.0* - - asdf >=*0.0* - - numpy - - python + - astropy >=*0.0* + - astroimtools >=*0.0* + - stginga >=*0.0* + - specviz >=*0.0* + - photutils >=*0.0* + - glueviz >=*0.0* + - imexam >=*0.0* + - asdf >=*0.0* + - numpy + - python |