diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2018-01-08 10:20:26 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-08 10:20:26 -0500 |
commit | b967b638e4079cf07d9bb4c06f3c36eabe597529 (patch) | |
tree | 0d3e35bb0031e3215929f850ffe6e8234870f357 /glueviz | |
parent | 41d1f7dd61b5ce672c1f63b716368037ad2eca14 (diff) | |
download | astroconda-dev-b967b638e4079cf07d9bb4c06f3c36eabe597529.tar.gz |
Conda's resolver cannot see glueviz >0.8 as latest package (#91)
* Override this behavior by "building" with Python. Dumb but effective.
* Warnings added to prevent this situtation from coming once again.
Diffstat (limited to 'glueviz')
-rw-r--r-- | glueviz/meta.yaml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/glueviz/meta.yaml b/glueviz/meta.yaml index 25f4ee2..144fab4 100644 --- a/glueviz/meta.yaml +++ b/glueviz/meta.yaml @@ -4,7 +4,7 @@ {% set name = 'glueviz' %} {% set version = '0.12.0' %} -{% set number = '1' %} +{% set number = '2' %} package: name: {{ name }} @@ -20,6 +20,11 @@ build: script: python setup.py install --single-version-externally-managed --record record.txt requirements: + build: + # Conda-build is not smart enough to use 'python' on its own. + # DO NOT REMOVE THIS LINE: + - python {{ python }} + run: - glue-core >=0.12 - glue-vispy-viewers >=0.9 |