Skip to content

Commit 71421d9

Browse files
jrebackjreback
jreback
authored andcommitted
BLD: add conda recipe (GH8934)
1 parent edb0927 commit 71421d9

File tree

4 files changed

+80
-0
lines changed

4 files changed

+80
-0
lines changed

.binstar.yml

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
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: ['[email protected]']
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

conda.recipe/bld.bat

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
@echo off
2+
%PYTHON% setup.py install --quiet

conda.recipe/build.sh

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/bash
2+
$PYTHON setup.py install --quiet

conda.recipe/meta.yaml

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
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

0 commit comments

Comments
 (0)