From 9c0d95ebbd02c6abb0c6992e45446c8a545fb9f2 Mon Sep 17 00:00:00 2001 From: shanosborne <31218961+shanosborne@users.noreply.github.com> Date: Thu, 13 Dec 2018 18:23:31 -0500 Subject: Update poppy to 0.8.0 (#438) * Update poppy to 0.8.0 Update for new poppy release version 0.8.0 * Update meta.yaml * Skip Python 2.7 builds * Build system requires {{ python }} jinja2 variable * Fix accidental python pin --- poppy/meta.yaml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/poppy/meta.yaml b/poppy/meta.yaml index 52ce202..9f768d8 100644 --- a/poppy/meta.yaml +++ b/poppy/meta.yaml @@ -1,10 +1,10 @@ {% set name = 'poppy' %} -{% set version = '0.7.0' %} +{% set version = '0.8.0' %} {% set tag = 'v' + version %} {% set number = '0' %} about: - home: https://github.com/mperrin/{{ name }} + home: https://github.com/spacetelescope/{{ name }} license: BSD summary: | Physical optics propagation (wavefront diffraction) for optical @@ -12,6 +12,7 @@ about: build: number: {{ number }} + skip: true # [py27] package: name: {{ name }} @@ -23,8 +24,6 @@ requirements: - numpy {{ numpy }} - scipy >=0.14.0 - matplotlib >=1.3.0 - - six - - enum34 [py27] - setuptools - python {{ python }} run: @@ -32,11 +31,9 @@ requirements: - numpy - scipy >=0.14.0 - matplotlib >=1.3.0 - - six - - enum34 [py27] - setuptools - python source: git_tag: {{ tag }} - git_url: https://github.com/mperrin/{{ name }}.git + git_url: https://github.com/spacetelescope/{{ name }}.git -- cgit