Skip to content

Commit 44e7e44

Browse files
author
denfromufa
committed
Merge pull request #1 from pydata/master
updating my own fork with up-to-date changes from master
2 parents bbddca4 + 54f02df commit 44e7e44

File tree

379 files changed

+83789
-19384
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

379 files changed

+83789
-19384
lines changed

.binstar.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
package: pandas
2+
user: jreback
3+
4+
install:
5+
- conda config --add channels pandas
6+
7+
before_script:
8+
- python -V
9+
10+
platform:
11+
- linux-64
12+
#- linux-32
13+
- osx-64
14+
#- win-32
15+
- win-64
16+
engine:
17+
- python=2.7
18+
#- python=3.4
19+
script:
20+
- conda build conda.recipe --quiet
21+
22+
iotimeout: 600
23+
24+
build_targets: conda
25+
26+
notifications:
27+
email:
28+
recipients: ['[email protected]']

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@
1313
*.dta binary
1414
*.xls binary
1515
*.xlsx binary
16+
pandas/_version.py export-subst

.gitignore

+7-4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
.idea
1818
.vagrant
1919
.noseids
20+
.ipynb_checkpoints
2021

2122
# Compiled source #
2223
###################
@@ -41,6 +42,8 @@ doc/_build
4142
dist
4243
# Egg metadata
4344
*.egg-info
45+
.eggs
46+
4447
# tox testing tool
4548
.tox
4649
# rope
@@ -55,7 +58,7 @@ dist
5558
######################
5659
.directory
5760
.gdb_history
58-
.DS_Store?
61+
.DS_Store
5962
ehthumbs.db
6063
Icon?
6164
Thumbs.db
@@ -76,9 +79,9 @@ scikits
7679
*.c
7780
*.cpp
7881

79-
# Things specific to this project #
80-
###################################
81-
pandas/version.py
82+
# Performance Testing #
83+
#######################
84+
asv_bench/
8285

8386
# Documentation generated files #
8487
#################################

.travis.yml

+39-14
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ matrix:
2222
- LOCALE_OVERRIDE="it_IT.UTF-8"
2323
- BUILD_TYPE=conda
2424
- JOB_NAME: "26_nslow_nnet"
25+
- INSTALL_TEST=true
2526
- python: 2.7
2627
env:
2728
- NOSE_ARGS="slow and not network and not disabled"
@@ -30,6 +31,24 @@ matrix:
3031
- JOB_TAG=_LOCALE
3132
- BUILD_TYPE=conda
3233
- JOB_NAME: "27_slow_nnet_LOCALE"
34+
- python: 2.7
35+
env:
36+
- NOSE_ARGS="not slow and not disabled"
37+
- FULL_DEPS=true
38+
- CLIPBOARD_GUI=gtk2
39+
- BUILD_TYPE=conda
40+
- JOB_NAME: "27_build_test"
41+
- JOB_TAG=_BUILD_TEST
42+
- BUILD_TEST=true
43+
- python: 2.7
44+
env:
45+
- NOSE_ARGS="not slow and not disabled"
46+
- FULL_DEPS=true
47+
- CLIPBOARD_GUI=gtk2
48+
- BUILD_TYPE=pydata
49+
- JOB_NAME: "27_build_test"
50+
- JOB_TAG=_BUILD_TEST
51+
- BUILD_TEST=true
3352
- python: 2.7
3453
env:
3554
- NOSE_ARGS="not slow and not disabled"
@@ -67,13 +86,6 @@ matrix:
6786
- CLIPBOARD=xsel
6887
- BUILD_TYPE=conda
6988
- JOB_NAME: "34_slow"
70-
- python: 3.2
71-
env:
72-
- NOSE_ARGS="not slow and not network and not disabled"
73-
- FULL_DEPS=true
74-
- CLIPBOARD_GUI=qt4
75-
- BUILD_TYPE=pydata
76-
- JOB_NAME: "32_nslow"
7789
- python: 2.7
7890
env:
7991
- EXPERIMENTAL=true
@@ -84,13 +96,6 @@ matrix:
8496
- BUILD_TYPE=pydata
8597
- PANDAS_TESTING_MODE="deprecate"
8698
allow_failures:
87-
- python: 3.2
88-
env:
89-
- NOSE_ARGS="not slow and not network and not disabled"
90-
- FULL_DEPS=true
91-
- CLIPBOARD_GUI=qt4
92-
- BUILD_TYPE=pydata
93-
- JOB_NAME: "32_nslow"
9499
- python: 2.7
95100
env:
96101
- NOSE_ARGS="slow and not network and not disabled"
@@ -115,6 +120,24 @@ matrix:
115120
- NUMPY_BUILD=master
116121
- BUILD_TYPE=pydata
117122
- PANDAS_TESTING_MODE="deprecate"
123+
- python: 2.7
124+
env:
125+
- NOSE_ARGS="not slow and not disabled"
126+
- FULL_DEPS=true
127+
- CLIPBOARD_GUI=gtk2
128+
- BUILD_TYPE=conda
129+
- JOB_NAME: "27_build_test"
130+
- JOB_TAG=_BUILD_TEST
131+
- BUILD_TEST=true
132+
- python: 2.7
133+
env:
134+
- NOSE_ARGS="not slow and not disabled"
135+
- FULL_DEPS=true
136+
- CLIPBOARD_GUI=gtk2
137+
- BUILD_TYPE=pydata
138+
- JOB_NAME: "27_build_test"
139+
- JOB_TAG=_BUILD_TEST
140+
- BUILD_TEST=true
118141

119142
before_install:
120143
- echo "before_install"
@@ -143,10 +166,12 @@ before_script:
143166

144167
script:
145168
- echo "script"
169+
- ci/run_build_docs.sh &
146170
- ci/script.sh
147171
# nothing here, or failed tests won't fail travis
148172

149173
after_script:
174+
- ci/install_test.sh
150175
- if [ -f /tmp/doc.log ]; then cat /tmp/doc.log; fi
151176
- source activate pandas && ci/print_versions.py
152177
- ci/print_skipped.py /tmp/nosetests.xml

0 commit comments

Comments
 (0)