diff options
| author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2017-01-11 12:40:11 -0500 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-01-11 12:40:11 -0500 | 
| commit | ad54fb683d0cb6b1644bea5967e2272a6a83fe97 (patch) | |
| tree | 65d36aaeea45006d05a17a5056a6200f7ec39936 | |
| parent | 1f6c267e0060301c9313e10f5f3a2a3ccc405e8f (diff) | |
| download | astroconda-contrib-ad54fb683d0cb6b1644bea5967e2272a6a83fe97.tar.gz | |
Remove numpy locks; Add newlines (#147)
| -rw-r--r-- | synphot/meta.yaml | 9 | 
1 files changed, 7 insertions, 2 deletions
| diff --git a/synphot/meta.yaml b/synphot/meta.yaml index 0ad2540..231fd72 100644 --- a/synphot/meta.yaml +++ b/synphot/meta.yaml @@ -7,26 +7,31 @@ about:      home: https://github.com/spacetelescope/{{ reponame }}      license: BSD      summary: Synthetic photometry using Astropy +      build:      number: {{ number }} +      package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - astropy >=1.3      - scipy >= 0.14 -    - numpy x.x +    - numpy      - setuptools      - python x.x      run:      - astropy >=1.3      - scipy >= 0.14 -    - numpy x.x +    - numpy      - python x.x +  source:      git_tag: {{ version }}      git_url: https://github.com/spacetelescope/{{ reponame }}.git +  test:      imports:      - synphot | 
