From b967b638e4079cf07d9bb4c06f3c36eabe597529 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 8 Jan 2018 10:20:26 -0500 Subject: 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. --- glueviz/meta.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 -- cgit