diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2018-08-07 00:48:22 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-07 00:48:22 -0400 |
commit | e6ca61582ffee10bb5c6a8de7267fdba9772ddb8 (patch) | |
tree | 0ad9fd8b8009c12823a0691c9c4ce4fb51a72a38 /photutils/meta.yaml | |
parent | 617845e6d595f5f2704ad9d75d35fb20ed1c2c55 (diff) | |
download | astroconda-dev-e6ca61582ffee10bb5c6a8de7267fdba9772ddb8.tar.gz |
Update photutils recipe (#149)
Diffstat (limited to 'photutils/meta.yaml')
-rw-r--r-- | photutils/meta.yaml | 43 |
1 files changed, 23 insertions, 20 deletions
diff --git a/photutils/meta.yaml b/photutils/meta.yaml index 2417653..2bc39ec 100644 --- a/photutils/meta.yaml +++ b/photutils/meta.yaml @@ -3,15 +3,16 @@ {% if version[0] == 'v' %} {% set version = version[1:] %} {% endif %} -{% set number = '4' %} +{% set number = '0' %} about: home: https://github.com/astropy/{{ name }} license: BSD - summary: photutils + summary: An Astropy package for photometry build: number: {{ number }} + skip: True [py27] package: name: {{ name }} @@ -19,29 +20,31 @@ package: requirements: build: - - nose - - astropy - - cython - - matplotlib - - numpy {{ numpy }} - - scikit-image - - scipy - - setuptools - - python {{ python }} + - astropy >=2.0 + - cython + - matplotlib >=1.3 + - numpy >=1.10 + - scikit-image >=0.11 + - scikit-learn >=0.18 + - scipy >=0.16 + - setuptools + - python {{ python }} run: - - astropy - - cython - - matplotlib - - numpy - - scikit-image - - scipy - - setuptools - - python + - astropy >=2.0 + - pytest-astropy + - cython + - matplotlib >=1.3 + - numpy >=1.10 + - scikit-image >=0.11 + - scikit-learn >=0.18 + - scipy >=0.16 + - setuptools + - python source: git_url: https://github.com/astropy/{{ name }}.git test: - imports: + imports: - photutils |