diff options
| author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2017-02-27 15:40:55 -0500 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-02-27 15:40:55 -0500 | 
| commit | 44fcda19c0865a0fc4beba963c9f231ba37258fe (patch) | |
| tree | f90750c29d384a8912723158d4f42c5c2cfca2f8 /glue-vispy-viewers | |
| parent | ee653e87c1e5586380e6533a0111b3998d4543b9 (diff) | |
| download | astroconda-contrib-44fcda19c0865a0fc4beba963c9f231ba37258fe.tar.gz | |
Fix vispy viewers (#179)
* Fix broken dependency chain; use built-in preserve_egg_dir feature
instead of "script+jargon" method
* Bump build number; Fix quotes
Diffstat (limited to 'glue-vispy-viewers')
| -rw-r--r-- | glue-vispy-viewers/bld.bat | 1 | ||||
| -rw-r--r-- | glue-vispy-viewers/build.sh | 1 | ||||
| -rw-r--r-- | glue-vispy-viewers/meta.yaml | 46 | 
3 files changed, 27 insertions, 21 deletions
| diff --git a/glue-vispy-viewers/bld.bat b/glue-vispy-viewers/bld.bat new file mode 100644 index 0000000..39b5e1f --- /dev/null +++ b/glue-vispy-viewers/bld.bat @@ -0,0 +1 @@ +%PYTHON% setup.py install diff --git a/glue-vispy-viewers/build.sh b/glue-vispy-viewers/build.sh new file mode 100644 index 0000000..5a5aeeb --- /dev/null +++ b/glue-vispy-viewers/build.sh @@ -0,0 +1 @@ +$PYTHON setup.py install diff --git a/glue-vispy-viewers/meta.yaml b/glue-vispy-viewers/meta.yaml index 0350c89..0b3f879 100644 --- a/glue-vispy-viewers/meta.yaml +++ b/glue-vispy-viewers/meta.yaml @@ -1,6 +1,6 @@  {% set name = 'glue-vispy-viewers' %} -{% set version = "0.7.1" %} -{% set number = '0' %} +{% set version = '0.7.1' %} +{% set number = '1' %}  package:    name: {{ name }} @@ -13,27 +13,31 @@ source:  build:    number: {{ number }} -  script: python setup.py install --single-version-externally-managed --record record.txt +  preserve_egg_dir: True  requirements: - -  build: -    - python -    - setuptools - -run: -    - python -    - numpy -    - pyopengl -    - glueviz >=0.10 -    - scikit-image -    - matplotlib -    - qtpy -    - pyqt - -    # Temporary: the scikit-image conda package is missing the dask dependency -    # so we add it here for now -    - dask +    build: +      - astropy +      - glueviz >=0.10 +      - scikit-image +      - qtpy +      - python x.x +      - setuptools + +    run: +      - astropy +      - numpy +      - pyopengl +      - glueviz >=0.10 +      - scikit-image +      - matplotlib +      - qtpy +      - pyqt +      - python x.x + +      # Temporary: the scikit-image conda package is missing the dask dependency +      # so we add it here for now +      - dask  test:    imports: | 
