Skip to content

Commit

Permalink
bumpversion 0.1.2 -> 0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume Lemaitre committed Jul 19, 2016
1 parent d6fc822 commit 28bc2db
Show file tree
Hide file tree
Showing 6 changed files with 56 additions and 3 deletions.
8 changes: 8 additions & 0 deletions conda-recipe/imbalanced-learn/bld.bat
Original file line number Diff line number Diff line change
@@ -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.
9 changes: 9 additions & 0 deletions conda-recipe/imbalanced-learn/build.sh
Original file line number Diff line number Diff line change
@@ -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.
36 changes: 36 additions & 0 deletions conda-recipe/imbalanced-learn/meta.yaml
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__
Expand Down
2 changes: 1 addition & 1 deletion imblearn/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.2
current_version = 0.1.3
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<dev>\d+))?
serialize =
Expand Down

0 comments on commit 28bc2db

Please sign in to comment.