diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2018-02-14 16:14:43 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-14 16:14:43 -0500 |
commit | 86518aca3da89064eb5c6f031a0c76843adc28bf (patch) | |
tree | b5d905b2af4b21fd0d771e2e74285371f50e1b70 /stsci-hst | |
parent | 000f9fe943522e54fcfd0910711bfdbde8785e3b (diff) | |
download | astroconda-contrib-86518aca3da89064eb5c6f031a0c76843adc28bf.tar.gz |
Avoid python-agnostic packages (#305)
Diffstat (limited to 'stsci-hst')
-rw-r--r-- | stsci-hst/meta.yaml | 73 |
1 files changed, 39 insertions, 34 deletions
diff --git a/stsci-hst/meta.yaml b/stsci-hst/meta.yaml index b71b639..c190b2e 100644 --- a/stsci-hst/meta.yaml +++ b/stsci-hst/meta.yaml @@ -1,9 +1,9 @@ {% set name = 'stsci-hst' %} -{% set version = '3.0.1' %} +{% set version = '3.0.2' %} {% if version[0] == 'v' %} {% set version = version[1:] %} {% endif %} -{% set number = '1' %} +{% set number = '0' %} about: home: http://ssb.stsci.edu @@ -18,36 +18,41 @@ package: version: {{ version }} requirements: + build: + - numpy {{ numpy }} + - python {{ python }} + run: - - acstools >=2.0.8 - - astropy >=1.3 - - calcos >=3.2.1 - - costools >=1.2.1 - - crds >=7.1.1 - - d2to1 >=0.2.12 - - drizzlepac >=2.1.17 - - fitsblender >=0.3.2 - - hstcal >=1.2.0 - - nictools >=1.1.3 - - pyregion >=1.1.2 - - pysynphot >=0.9.8.7 - - reftools >=1.7.4 - - stistools >=1.1 - - stsci.convolve >=2.2.1 - - stsci.distutils >=0.3.8 - - stsci.image >=2.2.0 - - stsci.imagemanip >=1.1.2 - - stsci.imagestats >=1.4.1 - - stsci.ndimage >=0.10.1 - - stsci.numdisplay >=1.6.1 - - stsci.sphinxext >=1.2.2 - - stsci.stimage >=0.2.1 - - stsci.skypac >=0.9.5 - - stsci.sphere >=0.2 - - stsci.tools >=3.4.11 - - stwcs >=1.3.2,<1.4.0 [py27] - - stwcs >=1.3.2 [not py27] - - wfpc2tools >=1.0.3 - - wfc3tools >=1.3.4 - - numpy - - python + - purge_path >=1.0.0 + - acstools >=2.0.8 + - astropy >=1.3 + - calcos >=3.2.1 + - costools >=1.2.1 + - crds >=7.1.1 + - d2to1 >=0.2.12 + - drizzlepac >=2.1.17 + - fitsblender >=0.3.2 + - hstcal >=1.2.0 + - nictools >=1.1.3 + - pyregion >=1.1.2 + - pysynphot >=0.9.8.7 + - reftools >=1.7.4 + - stistools >=1.1 + - stsci.convolve >=2.2.1 + - stsci.distutils >=0.3.8 + - stsci.image >=2.2.0 + - stsci.imagemanip >=1.1.2 + - stsci.imagestats >=1.4.1 + - stsci.ndimage >=0.10.1 + - stsci.numdisplay >=1.6.1 + - stsci.sphinxext >=1.2.2 + - stsci.stimage >=0.2.1 + - stsci.skypac >=0.9.5 + - stsci.sphere >=0.2 + - stsci.tools >=3.4.11 + - stwcs >=1.3.2,<1.4.0 [py27] + - stwcs >=1.3.2 [not py27] + - wfpc2tools >=1.0.3 + - wfc3tools >=1.3.4 + - numpy + - python |