diff options
| author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2018-02-01 16:32:07 -0500 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-02-01 16:32:07 -0500 | 
| commit | 96289b03a0e693777e20cc5a20f7bf36210f768f (patch) | |
| tree | 008993c0eaae97c0076b8e70e97959700df9e15f | |
| parent | e1c3d27a86cac78d6b3d67ac8982d42b294c40db (diff) | |
| download | astroconda-contrib-96289b03a0e693777e20cc5a20f7bf36210f768f.tar.gz | |
BUGFIX: Prevent incompatible package, stwcs-1.4.0, from entering py27 environment (#304)
| -rw-r--r-- | stsci-hst/meta.yaml | 42 | 
1 files changed, 5 insertions, 37 deletions
| diff --git a/stsci-hst/meta.yaml b/stsci-hst/meta.yaml index 9f45af6..9e3c55e 100644 --- a/stsci-hst/meta.yaml +++ b/stsci-hst/meta.yaml @@ -1,6 +1,6 @@  {% set name = 'stsci-hst' %} -{% set version = '3.0.0' %} -{% set number = '1' %} +{% set version = '3.0.1' %} +{% set number = '0' %}  about:      home: http://ssb.stsci.edu @@ -15,39 +15,6 @@ package:      version: {{ version }}  requirements: -    build: -    - 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 -    - wfpc2tools >=1.0.3 -    - wfc3tools >=1.3.4 -    - numpy -    - python x.x      run:      - purge_path >=1.0.0      - acstools >=2.0.8 @@ -76,8 +43,9 @@ requirements:      - stsci.skypac >=0.9.5      - stsci.sphere >=0.2      - stsci.tools >=3.4.11 -    - stwcs >=1.3.2 +    - stwcs >=1.3.2,<1.4.0 [py27] +    - stwcs >=1.3.2 [not py27]      - wfpc2tools >=1.0.3      - wfc3tools >=1.3.4      - numpy -    - python x.x +    - python | 
