diff options
| author | Larry Bradley <larry.bradley@gmail.com> | 2020-09-25 16:22:53 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-25 16:22:53 -0400 | 
| commit | 36dc4dad7506d5f168582d584410f104ea6c3f6e (patch) | |
| tree | 926fd6cc174362ae668552081765607a9ab9c233 | |
| parent | 9559a1bfc877dc32c12e4c3d7eecbe001a3557a4 (diff) | |
| download | astroconda-contrib-36dc4dad7506d5f168582d584410f104ea6c3f6e.tar.gz | |
Update photutils to 1.0.1 (#673)
* Update photutils to 1.0.1
* Fix for PEP517 build
Co-authored-by: Joseph Hunkeler <jhunkeler@gmail.com>
| -rw-r--r-- | photutils/build.sh | 2 | ||||
| -rw-r--r-- | photutils/meta.yaml | 51 | 
2 files changed, 25 insertions, 28 deletions
| diff --git a/photutils/build.sh b/photutils/build.sh index 5a5aeeb..02c96e0 100644 --- a/photutils/build.sh +++ b/photutils/build.sh @@ -1 +1 @@ -$PYTHON setup.py install +$PYTHON -m pip install -v --no-deps . diff --git a/photutils/meta.yaml b/photutils/meta.yaml index 5f24b47..d07793e 100644 --- a/photutils/meta.yaml +++ b/photutils/meta.yaml @@ -1,50 +1,47 @@  {% set name = 'photutils' %} -{% set version = '0.7.2' %} -{% set tag = 'v' + version %} +{% set version = '1.0.1' %} +{% set tag = version %}  {% set number = '0' %}  about: -    home: https://github.com/astropy/{{ name }} -    license: BSD -    summary: An Astropy package for photometry +  home: https://github.com/astropy/{{ name }} +  license: BSD +  summary: An Astropy package for photometry  build: -    number: {{ number }} -    skip: True [py27] +  number: {{ number }} +  skip: True [py27]  package: -    name: {{ name }} -    version: {{ version }} +  name: {{ name }} +  version: {{ version }}  requirements: -    build: -    - astropy >=2.0.12,!=3.0.*,!=3.1,!=3.1.1 +  build:      - cython -    - matplotlib >=2.2 -    - numpy >=1.13 -    - scikit-image >=0.14.2 -    - scikit-learn >=0.19 -    - scipy >=0.19 -    - gwcs >=0.11 +    - extension-helpers      - setuptools +    - setuptools_scm +    - numpy {{ numpy }}      - python {{ python }} -    run: -    - astropy >=2.0.12,!=3.0.*,!=3.1,!=3.1.1 +    - astropy >=4.0 +  run: +    - python +    - astropy >=4.0      - pytest-astropy -    - cython +    - gwcs >=0.12      - matplotlib >=2.2 -    - numpy >=1.13 +    - numpy >=1.17      - scikit-image >=0.14.2      - scikit-learn >=0.19      - scipy >=0.19 -    - gwcs >=0.11 -    - setuptools -    - python  source: -    git_tag: {{ tag }} -    git_url: https://github.com/astropy/{{ name }}.git +  git_tag: {{ tag }} +  git_url: https://github.com/astropy/{{ name }}.git  test: -    imports: +  requires: +    - pytest-astropy +  imports:      - photutils | 
