blob: 641bb97c3104752514e302a362f6c6af7866c0ee (
plain)
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
48
49
50
51
|
package:
name: astra-toolbox
version: '2.0.0'
source:
git_url: https://github.com/astra-toolbox/astra-toolbox.git
git_tag: master
build:
number: 0
test:
imports:
- astra
requires:
# To avoid large downloads just for testing after build phase
- nomkl # [not win]
# import scipy.sparse.linalg fails with mkl-2017.0.4 on Windows
- mkl !=2017.0.4 # [win]
# scipy 1.1.0 packages are broken with python 2.7 and some numpy versions
- scipy !=1.1.0 # [py27]
requirements:
build:
- {{ compiler('c') }} # [win or linux]
- {{ compiler('cxx') }} # [linux]
host:
- python
- cython >=0.13
- boost # [osx or linux]
- nomkl # [not win]
- numpy {{ numpy }}
- scipy
- six
- libastra ==2.0.0
run:
- python
- {{ pin_compatible('numpy', min_pin='x.x', max_pin='x') }}
- scipy
- six
- libastra ==2.0.0
about:
home: http://www.astra-toolbox.com
license: GPLv3
summary: 'The ASTRA Toolbox is a Python toolbox of high-performance GPU primitives for 2D and 3D tomography.'
# See
# http://docs.continuum.io/conda/build.html for
# more information about meta.yaml
|