File tree 6 files changed +56
-3
lines changed
conda-recipe/imbalanced-learn
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 87
87
# built documents.
88
88
#
89
89
# The short X.Y version.
90
- __version__ = '0.1.2 '
90
+ __version__ = '0.1.3 '
91
91
version = __version__
92
92
# The full version, including alpha/beta/rc tags.
93
93
release = __version__
Original file line number Diff line number Diff line change 21
21
# Dev branch marker is: 'X.Y.dev' or 'X.Y.devN' where N is an integer.
22
22
# 'X.Y.dev0' is the canonical version of 'X.Y.dev'
23
23
#
24
- __version__ = '0.1.2 '
24
+ __version__ = '0.1.3 '
25
25
26
26
_IMBALANCED_DATASET_INSTALL_MSG = 'See %s for installation information.' % (
27
27
'glemaitre.github.io/UnbalancedDataset/install.html' )
Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 0.1.2
2
+ current_version = 0.1.3
3
3
tag = False
4
4
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<dev>\d+))?
5
5
serialize =
You can’t perform that action at this time.
0 commit comments