File tree Expand file tree Collapse file tree 2 files changed +22
-10
lines changed Expand file tree Collapse file tree 2 files changed +22
-10
lines changed Original file line number Diff line number Diff line change 21
21
# Dev branch marker is: 'X.Y.dev' or 'X.Y.devN' where N is an integer.
22
22
# 'X.Y.dev0' is the canonical version of 'X.Y.dev'
23
23
#
24
- __version__ = '0.1.1 '
24
+ __version__ = '0.1.2.dev0 '
25
25
26
26
_IMBALANCED_DATASET_INSTALL_MSG = 'See %s for installation information.' % (
27
27
'glemaitre.github.io/UnbalancedDataset/install.html' )
Original file line number Diff line number Diff line change
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
+
1
10
[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
4
11
test = nosetests
5
12
6
13
[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.
12
14
exe = 1
13
15
cover-html = 1
14
16
cover-html-dir = coverage
15
17
cover-package = imblearn
16
-
17
18
detailed-errors = 1
18
19
with-doctest = 1
19
20
doctest-tests = 1
20
21
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
+
You can’t perform that action at this time.
0 commit comments