File tree Expand file tree Collapse file tree 4 files changed +80
-0
lines changed Expand file tree Collapse file tree 4 files changed +80
-0
lines changed Original file line number Diff line number Diff line change 1+ package : pandas
2+ user : jreback
3+
4+ platform :
5+ # - osx-64
6+ # - linux-32
7+ - linux-64
8+ - win-64
9+ # - win-32
10+
11+ engine :
12+ # - python=2.6
13+ - python=2.7
14+ # - python=3.3
15+ # - python=3.4
16+
17+ before_script :
18+ - python -V
19+
20+ script :
21+ - conda build conda.recipe --quiet
22+
23+ iotimeout : 600
24+
25+ build_targets : conda
26+
27+ notifications :
28+ email :
29+ recipients : ['jeff@reback.net']
30+
31+ ---
32+ platform : win-32
33+ engine : python=2.6
34+ exclude : true
35+ ---
36+ platform : win-64
37+ engine : python=2.6
38+ exclude : true
Original file line number Diff line number Diff line change 1+ @ echo off
2+ %PYTHON% setup.py install --quiet
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ $PYTHON setup.py install --quiet
Original file line number Diff line number Diff line change 1+ package :
2+ name : pandas
3+ version : {{ environ.get('GIT_DESCRIBE_TAG', '') }}
4+
5+ build :
6+ number : {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }}
7+
8+ source :
9+ git_url : ../
10+
11+ requirements :
12+ build :
13+ - python
14+ - cython
15+ - libpython # [win]
16+ - numpy
17+ - setuptools
18+ - pytz
19+ - dateutil
20+
21+ run :
22+ - python
23+ - numpy
24+ - libpython # [win]
25+ - dateutil
26+ - pytz
27+
28+ test :
29+ requires :
30+ - nose
31+ - coverage
32+
33+ commands :
34+ - python -c "import pandas"
35+
36+ about :
37+ home : http://pandas.pydata.org
38+ license : BSD
You can’t perform that action at this time.
0 commit comments