blob: 74c6bcffa9cf949030fa21af95e52282afb5dc9b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
{% set name = 'photutils' %}
{% set version = '1.1.0' %}
{% set tag = version %}
{% set number = '0' %}
about:
home: https://github.com/astropy/{{ name }}
license: BSD
summary: An Astropy package for photometry
build:
number: {{ number }}
skip: True # [py<37]
package:
name: {{ name }}
version: {{ version }}
requirements:
build:
- cython
- extension-helpers
- setuptools
- setuptools_scm
- numpy {{ numpy }}
- python {{ python }}
- astropy >=4.0
run:
- python
- astropy >=4.0
- pytest-astropy
- gwcs >=0.12
- matplotlib >=2.2
- numpy >=1.17
- scikit-image >=0.14.2
- scikit-learn >=0.19
- scipy >=0.19
source:
git_tag: {{ tag }}
git_url: https://github.com/astropy/{{ name }}.git
test:
requires:
- pytest-astropy
imports:
- photutils
|