Skip to content

Commit

Permalink
six as external (#8)
Browse files Browse the repository at this point in the history
* six as external

* ignore externals
  • Loading branch information
flennerhag committed Feb 5, 2017
1 parent 6632cb2 commit c5d18d5
Show file tree
Hide file tree
Showing 5 changed files with 898 additions and 2 deletions.
1 change: 1 addition & 0 deletions .landscape.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ doc-warnings: yes

ignore-paths:
- doc/examples
- mlens/externals

ignore-patterns:
- ^example/doc_.*\.py$
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ install:
- pip install .
script:
- set -e
- nosetests -s -v --with-coverage --exclude mlens/visualization
- nosetests -s -v --with-coverage --exclude mlens/visualization --exclude mlens/externals
after_success:
coveralls
2 changes: 1 addition & 1 deletion mlens/ensemble/stacking_ensemble.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from ..metrics import score_matrix
from ..parallel import preprocess_folds, preprocess_pipes
from ..parallel import fit_estimators, base_predict
from sklearn.externals import six
from ..externals import six
from time import time
import sys

Expand Down
12 changes: 12 additions & 0 deletions mlens/externals/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

"""ML-ENSEMBLE
author: Sebastian Flennerhag
date: 05/02/2017
"""

import six

__all__ = ['six']
Loading

0 comments on commit c5d18d5

Please sign in to comment.