diff options
| author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2018-11-26 18:08:09 -0500 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-11-26 18:08:09 -0500 | 
| commit | 710abc474e541bf32f1105f32b536f2299d5397d (patch) | |
| tree | dd945d90157c05cc969e79aa157e9e1f5bc358b9 | |
| parent | aded822fd4641cf6626f805cc5b28a9316478fd6 (diff) | |
| download | astroconda-contrib-710abc474e541bf32f1105f32b536f2299d5397d.tar.gz | |
Fix py37 package resolution failures (#424)
* Remove totally deprecated dependencies
* Future: If recipe no longer exists... remove from metapackage
| -rw-r--r-- | conda_build_config.yaml | 3 | ||||
| -rw-r--r-- | stsci-data-analysis/meta.yaml | 3 | ||||
| -rw-r--r-- | stsci-hst/meta.yaml | 7 | ||||
| -rw-r--r-- | stsci/meta.yaml | 11 | 
4 files changed, 10 insertions, 14 deletions
| diff --git a/conda_build_config.yaml b/conda_build_config.yaml index e890122..3256ed5 100644 --- a/conda_build_config.yaml +++ b/conda_build_config.yaml @@ -1,9 +1,10 @@  python:    - 3.5    - 3.6 +  - 3.7  numpy: -  - 1.12 +  - 1.14  pin_build_as_run:    python: diff --git a/stsci-data-analysis/meta.yaml b/stsci-data-analysis/meta.yaml index dec5344..e0ff766 100644 --- a/stsci-data-analysis/meta.yaml +++ b/stsci-data-analysis/meta.yaml @@ -1,5 +1,5 @@  {% set name = 'stsci-data-analysis' %} -{% set version = '2.1.1' %} +{% set version = '2.2.0' %}  {% set number = '0' %}  about: @@ -25,7 +25,6 @@ requirements:        - astroimtools >=0.1.1        - cubeviz >=0.0.2        - glueviz >=0.12.0 -      - glue-ginga >=0.2        - glue-vispy-viewers >=0.9        - gwcs >=0.8.0        - mosviz >=0.1.1 diff --git a/stsci-hst/meta.yaml b/stsci-hst/meta.yaml index b644a32..94cb310 100644 --- a/stsci-hst/meta.yaml +++ b/stsci-hst/meta.yaml @@ -1,5 +1,5 @@  {% set name = 'stsci-hst' %} -{% set version = '3.0.3' %} +{% set version = '3.1.0' %}  {% set number = '0' %}  about: @@ -20,9 +20,8 @@ requirements:        - python {{ python }}      run: -      - purge_path >=1.0.0        - acstools >=2.0.8 -      - astropy >=1.3 +      - astropy >=2.0.0        - calcos >=3.2.1        - costools >=1.2.1        - crds >=7.1.1 @@ -40,11 +39,9 @@ requirements:        - 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] diff --git a/stsci/meta.yaml b/stsci/meta.yaml index dc3746d..d35dbde 100644 --- a/stsci/meta.yaml +++ b/stsci/meta.yaml @@ -1,6 +1,6 @@  {% set name = 'stsci' %} -{% set version = '3.0.2' %} -{% set number = '1' %} +{% set version = '3.1.0' %} +{% set number = '0' %}  about:      home: http://ssb.stsci.edu @@ -20,15 +20,14 @@ requirements:        - python {{ python }}      run: -      - stsci-hst >=3.0.0 -      - stsci-data-analysis >=2.0.2 -      - astropy >=1.3 +      - stsci-hst >=3.1.0 +      - stsci-data-analysis >=2.1.1 +      - astropy >=2.0.0        - cfitsio >=3.370        - d2to1 >=0.2.12        - ds9 >=7.1        - fftw >=3.3.4        - htc_utils >=0.1 -      - purge_path >=1.0.0        - pyds9 >=1.8.1        - pyfftw >=0.9.2        - numpy | 
