Skip to content

Commit 9a64535

Browse files
author
Guillaume Lemaitre
committed
Release 0.1.5
1 parent 78c8afe commit 9a64535

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

conda-recipe/imbalanced-learn/meta.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package:
22
name: imbalanced-learn
3-
version: "0.1.4"
3+
version: "0.1.5"
44

55
source:
6-
git_rev: 0.1.4
6+
git_rev: 0.1.5
77
git_url: https://github.com/scikit-learn-contrib/imbalanced-learn.git
88

99
requirements:

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
# built documents.
8888
#
8989
# The short X.Y version.
90-
__version__ = '0.1.4'
90+
__version__ = '0.1.5'
9191
version = __version__
9292
# The full version, including alpha/beta/rc tags.
9393
release = __version__

imblearn/ensemble/easy_ensemble.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55

66
from sklearn.utils import check_random_state
77

8-
from ..base import BaseMulticlassSampler
8+
from ..base import SamplerMixin
99
from ..under_sampling import RandomUnderSampler
1010

1111

1212
MAX_INT = np.iinfo(np.int32).max
1313

1414

15-
class EasyEnsemble(BaseMulticlassSampler):
15+
class EasyEnsemble(SamplerMixin):
1616
"""Create an ensemble sets by iteratively applying random under-sampling.
1717
1818
This method iteratively select a random subset and make an ensemble of the

imblearn/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# Dev branch marker is: 'X.Y.dev' or 'X.Y.devN' where N is an integer.
2222
# 'X.Y.dev0' is the canonical version of 'X.Y.dev'
2323
#
24-
__version__ = '0.1.4'
24+
__version__ = '0.1.5'
2525

2626
_IMBALANCED_DATASET_INSTALL_MSG = 'See %s for installation information.' % (
2727
'glemaitre.github.io/UnbalancedDataset/install.html')

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.1.4
2+
current_version = 0.1.5
33
tag = False
44
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<dev>\d+))?
55
serialize =

0 commit comments

Comments
 (0)