File tree 4 files changed +46
-2
lines changed
4 files changed +46
-2
lines changed Original file line number Diff line number Diff line change 8
8
matrix :
9
9
fast_finish : true # immediately finish build once one of the jobs fails.
10
10
11
+ # set clone depth
12
+ clone_depth : 200
13
+
11
14
environment :
12
15
global :
13
16
# SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the
@@ -65,14 +68,14 @@ install:
65
68
66
69
# build em using the local source checkout in the correct windows env
67
70
- conda install conda-build
68
- - cmd : ' %CMD_IN_ENV% conda build conda .recipe -q --no-test'
71
+ - cmd : ' %CMD_IN_ENV% conda build ci\appveyor .recipe -q --no-test'
69
72
70
73
# create our env
71
74
- SET REQ=ci\requirements-%PYTHON_VERSION%-%PYTHON_ARCH%.run
72
75
- cmd : conda create -q -n pandas python=%PYTHON_VERSION% nose
73
76
- cmd : activate pandas
74
77
- cmd : conda install -q --file=%REQ%
75
- - ps : conda install -q (conda build conda .recipe -q --output --no-test)
78
+ - ps : conda install -q (conda build ci\appveyor .recipe -q --output --no-test)
76
79
77
80
test_script :
78
81
# tests
Original file line number Diff line number Diff line change
1
+ @ echo off
2
+ %PYTHON% setup.py install
Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+ $PYTHON setup.py install
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
+ string : np{{ environ.get('CONDA_NPY') }}py{{ environ.get('CONDA_PY') }}_{{ environ.get('GIT_BUILD_STR','') }}
8
+
9
+ source :
10
+
11
+ # conda-build needs a full clone
12
+ # rather than a shallow git_url type clone
13
+ # https://github.com/conda/conda-build/issues/780
14
+ path : ../../
15
+
16
+ requirements :
17
+ build :
18
+ - python
19
+ - cython
20
+ - numpy x.x
21
+ - setuptools
22
+ - pytz
23
+ - python-dateutil
24
+
25
+ run :
26
+ - python
27
+ - numpy x.x
28
+ - python-dateutil
29
+ - pytz
30
+
31
+ test :
32
+ imports :
33
+ - pandas
34
+
35
+ about :
36
+ home : http://pandas.pydata.org
37
+ license : BSD
You can’t perform that action at this time.
0 commit comments