Skip to content

Commit 28bc2db

Browse files
author
Guillaume Lemaitre
committed
bumpversion 0.1.2 -> 0.1.3
1 parent d6fc822 commit 28bc2db

File tree

6 files changed

+56
-3
lines changed

6 files changed

+56
-3
lines changed

conda-recipe/imbalanced-learn/bld.bat

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
"%PYTHON%" setup.py install
2+
if errorlevel 1 exit 1
3+
4+
:: Add more build steps here, if they are necessary.
5+
6+
:: See
7+
:: http://docs.continuum.io/conda/build.html
8+
:: for a list of environment variables that are set during the build process.
+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/bin/bash
2+
3+
$PYTHON setup.py install
4+
5+
# Add more build steps here, if they are necessary.
6+
7+
# See
8+
# http://docs.continuum.io/conda/build.html
9+
# for a list of environment variables that are set during the build process.
+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
package:
2+
name: imbalanced-learn
3+
version: "0.1.3"
4+
5+
source:
6+
git_rev: 0.1.3
7+
git_url: https://github.com/scikit-learn-contrib/imbalanced-learn.git
8+
9+
requirements:
10+
build:
11+
- python
12+
- setuptools
13+
- numpy
14+
- scipy
15+
- scikit-learn
16+
run:
17+
- python
18+
- numpy
19+
- scipy
20+
- scikit-learn
21+
22+
test:
23+
requires:
24+
- nose
25+
- coverage
26+
imports:
27+
- imblearn
28+
29+
about:
30+
home: https://github.com/scikit-learn-contrib/imbalanced-learn
31+
license: MIT
32+
license_file: LICENSE
33+
34+
# See
35+
# http://docs.continuum.io/conda/build.html for
36+
# more information about meta.yaml

doc/conf.py

+1-1
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.2'
90+
__version__ = '0.1.3'
9191
version = __version__
9292
# The full version, including alpha/beta/rc tags.
9393
release = __version__

imblearn/version.py

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

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

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.1.2
2+
current_version = 0.1.3
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)