diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2018-01-07 19:01:37 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-07 19:01:37 -0500 |
commit | 1b60572464ba73f7bd41138cdb89ce192473eaa1 (patch) | |
tree | c13ce24e17763ad2d387681d5d43bbdda4a2a200 /glue-core | |
parent | f9a26a7620af30bb01cc6746bc74efcff2ad62ed (diff) | |
download | astroconda-dev-1b60572464ba73f7bd41138cdb89ce192473eaa1.tar.gz |
Fix recipe (#88)
* Fix recipe
make `conda_build_config` compliant
* Update meta.yaml
Diffstat (limited to 'glue-core')
-rw-r--r-- | glue-core/meta.yaml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/glue-core/meta.yaml b/glue-core/meta.yaml index 87c787d..e4344e0 100644 --- a/glue-core/meta.yaml +++ b/glue-core/meta.yaml @@ -1,6 +1,6 @@ {% set name = 'glue-core' %} {% set version = '0.12.0' %} -{% set number = '0' %} +{% set number = '1' %} package: name: {{ name }} @@ -23,7 +23,8 @@ build: requirements: build: - - python + - numpy {{ numpy }} + - python {{ python }} - setuptools - pyqt @@ -35,7 +36,7 @@ requirements: # Required dependencies - python - - numpy >=1.9 + - numpy - pandas >=0.14 - astropy >=1.3 - matplotlib >=1.4 |