File tree Expand file tree Collapse file tree 6 files changed +56
-3
lines changed
conda-recipe/imbalanced-learn Expand file tree Collapse file tree 6 files changed +56
-3
lines changed Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 8787# built documents.
8888#
8989# The short X.Y version.
90- __version__ = '0.1.2 '
90+ __version__ = '0.1.3 '
9191version = __version__
9292# The full version, including alpha/beta/rc tags.
9393release = __version__
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.2 '
24+ __version__ = '0.1.3 '
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 11[bumpversion]
2- current_version = 0.1.2
2+ current_version = 0.1.3
33tag = False
44parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<dev>\d+))?
55serialize =
You can’t perform that action at this time.
0 commit comments