Skip to content

Commit 071c13c

Browse files
author
Guillaume Lemaitre
committed
Bump version: 0.1.1 → 0.1.2.dev0
1 parent 6db5116 commit 071c13c

File tree

2 files changed

+22
-10
lines changed

2 files changed

+22
-10
lines changed

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.1'
24+
__version__ = '0.1.2.dev0'
2525

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

setup.cfg

Lines changed: 21 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,33 @@
1+
[bumpversion]
2+
current_version = 0.1.2.dev0
3+
commit = True
4+
tag = False
5+
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<dev>\d+))?
6+
serialize =
7+
{major}.{minor}.{patch}.{release}{dev}
8+
{major}.{minor}.{patch}
9+
110
[aliases]
2-
# python2.7 has upgraded unittest and it is no longer compatible with some
3-
# of our tests, so we run all through nose
411
test = nosetests
512

613
[nosetests]
7-
# nosetests skips test files with the executable bit by default
8-
# which can silently hide failing tests.
9-
# There are no executable scripts within the scikit-learn project
10-
# so let's turn the --exe flag on to avoid skipping tests by
11-
# mistake.
1214
exe = 1
1315
cover-html = 1
1416
cover-html-dir = coverage
1517
cover-package = imblearn
16-
1718
detailed-errors = 1
1819
with-doctest = 1
1920
doctest-tests = 1
2021
doctest-extension = rst
21-
doctest-fixtures = _fixture
22+
doctest-fixtures = _fixture
23+
24+
[bumpversion:part:release]
25+
optional_value = gamma
26+
values =
27+
dev
28+
gamma
29+
30+
[bumpversion:part:dev]
31+
32+
[bumpversion:file:imblearn/version.py]
33+

0 commit comments

Comments
 (0)