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 | |
parent | 5178ca4e8679fad8528f338081e06719c2bd4b2f (diff) | |
download | astroconda-dev-64aec9f4786efda7430afde69f5a6521dfa482ce.tar.gz |
Tie each metapackage to its respective python version (#157)
-rw-r--r-- | stsci-data-analysis/meta.yaml | 26 | ||||
-rw-r--r-- | stsci-hst/meta.yaml | 62 | ||||
-rw-r--r-- | stsci/meta.yaml | 28 |
3 files changed, 64 insertions, 52 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 diff --git a/stsci-hst/meta.yaml b/stsci-hst/meta.yaml index d313fd4..1720f5c 100644 --- a/stsci-hst/meta.yaml +++ b/stsci-hst/meta.yaml @@ -1,6 +1,6 @@ {% set name = 'stsci-hst' %} {% set version = '0.0.0dev.0' %} -{% set number = '2' %} +{% set number = '3' %} about: home: http://www.stsci.edu @@ -15,32 +15,36 @@ package: version: {{ version }} requirements: + build: + - numpy {{ numpy }} + - python {{ python }} + run: - - acstools >=*0.0* - - astropy >=*0.0* - - calcos >=*0.0* - - costools >=*0.0* - - crds >=*0.0* - - drizzlepac >=*0.0* - - fitsblender >=*0.0* - - hstcal >=*0.0* - - nictools >=*0.0* - - pysynphot >=*0.0* - - reftools >=*0.0* - - stistools >=*0.0* - - stsci.convolve >=*0.0* - - stsci.image >=*0.0* - - stsci.imagemanip >=*0.0* - - stsci.imagestats >=*0.0* - - stsci.ndimage >=*0.0* - - stsci.numdisplay >=*0.0* - - stsci.sphinxext >=*0.0* - - stsci.stimage >=*0.0* - - stsci.skypac >=*0.0* - - stsci.sphere >=*0.0* - - stsci.tools >=*0.0* - - stwcs >=*0.0* - - wfpc2tools >=*0.0* - - wfc3tools >=*0.0* - - numpy - - python + - acstools >=*0.0* + - astropy >=*0.0* + - calcos >=*0.0* + - costools >=*0.0* + - crds >=*0.0* + - drizzlepac >=*0.0* + - fitsblender >=*0.0* + - hstcal >=*0.0* + - nictools >=*0.0* + - pysynphot >=*0.0* + - reftools >=*0.0* + - stistools >=*0.0* + - stsci.convolve >=*0.0* + - stsci.image >=*0.0* + - stsci.imagemanip >=*0.0* + - stsci.imagestats >=*0.0* + - stsci.ndimage >=*0.0* + - stsci.numdisplay >=*0.0* + - stsci.sphinxext >=*0.0* + - stsci.stimage >=*0.0* + - stsci.skypac >=*0.0* + - stsci.sphere >=*0.0* + - stsci.tools >=*0.0* + - stwcs >=*0.0* + - wfpc2tools >=*0.0* + - wfc3tools >=*0.0* + - numpy + - python diff --git a/stsci/meta.yaml b/stsci/meta.yaml index 850c436..e10fce6 100644 --- a/stsci/meta.yaml +++ b/stsci/meta.yaml @@ -1,6 +1,6 @@ {% set name = 'stsci' %} {% set version = '0.0.0.dev0' %} -{% 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: - - stsci-hst - - stsci-data-analysis - - astropy - - cfitsio - - ds9 - - fftw - - htc_utils - - pyds9 - - pyfftw - - numpy - - python + - stsci-hst + - stsci-data-analysis + - astropy + - cfitsio + - ds9 + - fftw + - htc_utils + - pyds9 + - pyfftw + - numpy + - python |