diff options
author | shanosborne <31218961+shanosborne@users.noreply.github.com> | 2018-12-13 18:23:31 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2018-12-13 18:23:31 -0500 |
commit | 9c0d95ebbd02c6abb0c6992e45446c8a545fb9f2 (patch) | |
tree | c30b3c8639234161e70a1bb61d5edcf9234f3b44 | |
parent | 0d63d45f6d6177fb2fd5748f3dabc470168fda21 (diff) | |
download | astroconda-contrib-9c0d95ebbd02c6abb0c6992e45446c8a545fb9f2.tar.gz |
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
-rw-r--r-- | poppy/meta.yaml | 11 |
1 files 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 |