Skip to content

Commit 3d504fb

Browse files
committed
Merge remote-tracking branch 'upstream/master' into get_dummies_dtype
2 parents 37d93c9 + cfad581 commit 3d504fb

Some content is hidden

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

93 files changed

+3243
-1538
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -106,4 +106,3 @@ doc/build/html/index.html
106106
doc/tmp.sv
107107
doc/source/styled.xlsx
108108
doc/source/templates/
109-
doc/source/savefig/

ci/lint.sh

+7-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,13 @@ if [ "$LINT" ]; then
7272
echo "Linting *.c and *.h DONE"
7373

7474
echo "Check for invalid testing"
75-
grep -r -E --include '*.py' --exclude testing.py '(numpy|np)\.testing' pandas
75+
76+
# Check for the following code in testing:
77+
#
78+
# np.testing
79+
# np.array_equal
80+
grep -r -E --include '*.py' --exclude testing.py '(numpy|np)(\.testing|\.array_equal)' pandas/tests/
81+
7682
if [ $? = "0" ]; then
7783
RET=1
7884
fi

ci/requirements-3.6.sh

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
3+
source activate pandas
4+
5+
echo "[install 3.6 downstream deps]"
6+
7+
conda install -n pandas -c conda-forge pandas-datareader xarray geopandas seaborn statsmodels scikit-learn dask

ci/requirements-3.6_NUMPY_DEV.build.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ PRE_WHEELS="https://7933911d6844c6c53a7d-47bd50c35cd79bd838daf386af554a83.ssl.cf
1212
pip install --pre --upgrade --timeout=60 -f $PRE_WHEELS numpy scipy
1313

1414
# install dateutil from master
15-
pip install -U git+git://github.com/dateutil/dateutil.git
15+
# pip install -U git+git://github.com/dateutil/dateutil.git
16+
pip install dateutil
1617

1718
# cython via pip
1819
pip install cython

ci/script_multi.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/bin/bash -e
22

33
echo "[script multi]"
44

0 commit comments

Comments
 (0)