From 28bc2dbb739ce7dcf7c35b8a55b92cda9809f6c0 Mon Sep 17 00:00:00 2001 From: Guillaume Lemaitre Date: Tue, 19 Jul 2016 16:03:56 +0200 Subject: [PATCH] bumpversion 0.1.2 -> 0.1.3 --- conda-recipe/imbalanced-learn/bld.bat | 8 ++++++ conda-recipe/imbalanced-learn/build.sh | 9 +++++++ conda-recipe/imbalanced-learn/meta.yaml | 36 +++++++++++++++++++++++++ doc/conf.py | 2 +- imblearn/version.py | 2 +- setup.cfg | 2 +- 6 files changed, 56 insertions(+), 3 deletions(-) create mode 100644 conda-recipe/imbalanced-learn/bld.bat create mode 100644 conda-recipe/imbalanced-learn/build.sh create mode 100644 conda-recipe/imbalanced-learn/meta.yaml diff --git a/conda-recipe/imbalanced-learn/bld.bat b/conda-recipe/imbalanced-learn/bld.bat new file mode 100644 index 000000000..fb9a835a3 --- /dev/null +++ b/conda-recipe/imbalanced-learn/bld.bat @@ -0,0 +1,8 @@ +"%PYTHON%" setup.py install +if errorlevel 1 exit 1 + +:: Add more build steps here, if they are necessary. + +:: See +:: http://docs.continuum.io/conda/build.html +:: for a list of environment variables that are set during the build process. \ No newline at end of file diff --git a/conda-recipe/imbalanced-learn/build.sh b/conda-recipe/imbalanced-learn/build.sh new file mode 100644 index 000000000..4d7fc032b --- /dev/null +++ b/conda-recipe/imbalanced-learn/build.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +$PYTHON setup.py install + +# Add more build steps here, if they are necessary. + +# See +# http://docs.continuum.io/conda/build.html +# for a list of environment variables that are set during the build process. diff --git a/conda-recipe/imbalanced-learn/meta.yaml b/conda-recipe/imbalanced-learn/meta.yaml new file mode 100644 index 000000000..9ea628b47 --- /dev/null +++ b/conda-recipe/imbalanced-learn/meta.yaml @@ -0,0 +1,36 @@ +package: + name: imbalanced-learn + version: "0.1.3" + +source: + git_rev: 0.1.3 + git_url: https://github.com/scikit-learn-contrib/imbalanced-learn.git + +requirements: + build: + - python + - setuptools + - numpy + - scipy + - scikit-learn + run: + - python + - numpy + - scipy + - scikit-learn + +test: + requires: + - nose + - coverage + imports: + - imblearn + +about: + home: https://github.com/scikit-learn-contrib/imbalanced-learn + license: MIT + license_file: LICENSE + +# See +# http://docs.continuum.io/conda/build.html for +# more information about meta.yaml diff --git a/doc/conf.py b/doc/conf.py index 99b94405e..8a89172dc 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -87,7 +87,7 @@ # built documents. # # The short X.Y version. -__version__ = '0.1.2' +__version__ = '0.1.3' version = __version__ # The full version, including alpha/beta/rc tags. release = __version__ diff --git a/imblearn/version.py b/imblearn/version.py index e82751acf..14132f766 100644 --- a/imblearn/version.py +++ b/imblearn/version.py @@ -21,7 +21,7 @@ # Dev branch marker is: 'X.Y.dev' or 'X.Y.devN' where N is an integer. # 'X.Y.dev0' is the canonical version of 'X.Y.dev' # -__version__ = '0.1.2' +__version__ = '0.1.3' _IMBALANCED_DATASET_INSTALL_MSG = 'See %s for installation information.' % ( 'glemaitre.github.io/UnbalancedDataset/install.html') diff --git a/setup.cfg b/setup.cfg index 8e6fe608a..6a01fb8bb 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.2 +current_version = 0.1.3 tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+)(?P\d+))? serialize =