Skip to content

Commit d9a777f

Browse files
authored
Merge pull request #29 from scikit-learn-contrib/rm_old_build
fix master build
2 parents 927df74 + da14d63 commit d9a777f

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

.travis.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,6 @@ env:
1616
- TEST_DIR=/tmp/test_dir/
1717
- MODULE=skrules
1818
matrix:
19-
- DISTRIB="conda" PYTHON_VERSION="2.7" COVERAGE="true"
20-
NUMPY_VERSION="1.10.4" SCIPY_VERSION="0.17.0" CYTHON_VERSION="0.23.5"
21-
PANDAS_VERSION="0.18.1"
22-
23-
- DISTRIB="conda" PYTHON_VERSION="3.5" COVERAGE="true"
24-
NUMPY_VERSION="1.10.4" SCIPY_VERSION="0.17.0" CYTHON_VERSION="0.23.5"
25-
PANDAS_VERSION="0.18.1"
2619

2720
# This environment tests the newest supported Anaconda release (4.4.0)
2821
# It also runs tests requiring Pandas.

skrules/datasets/credit_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def load_credit_data():
3636
_fetch_remote(archive, dirname=sk_data_dir)
3737

3838
data = pd.read_excel(join(sk_data_dir, archive.filename),
39-
sheetname='Data', header=1)
39+
sheet_name='Data', header=1)
4040

4141
dataset = Bunch(
4242
data=(data.drop('default payment next month', axis=1)),

0 commit comments

Comments
 (0)