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 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' )
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+
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
411test = 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.
1214exe = 1
1315cover-html = 1
1416cover-html-dir = coverage
1517cover-package = imblearn
16-
1718detailed-errors = 1
1819with-doctest = 1
1920doctest-tests = 1
2021doctest-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