File tree Expand file tree Collapse file tree 3 files changed +14
-25
lines changed Expand file tree Collapse file tree 3 files changed +14
-25
lines changed Original file line number Diff line number Diff line change 44
55.. _scikit-learn-contrib : https://github.com/scikit-learn-contrib
66
7- |Landscape |_ |Travis |_ |AppVeyor |_ |Codecov |_ |CircleCI |_ |Python27 |_ | Python35 |_ |Pypi |_ |Gitter |_
7+ |Landscape |_ |Travis |_ |AppVeyor |_ |Codecov |_ |CircleCI |_ |PythonVersion |_ |Pypi |_ |Gitter |_
88
99.. |Landscape | image :: https://landscape.io/github/scikit-learn-contrib/imbalanced-learn/master/landscape.svg?style=flat
1010.. _Landscape : https://landscape.io/github/scikit-learn-contrib/imbalanced-learn/master
2121.. |CircleCI | image :: https://circleci.com/gh/scikit-learn-contrib/imbalanced-learn.svg?style=shield&circle-token=:circle-token
2222.. _CircleCI : https://circleci.com/gh/scikit-learn-contrib/imbalanced-learn/tree/master
2323
24- .. |Python27 | image :: https://img.shields.io/badge/python-2.7-blue.svg
25- .. _Python27 : https://badge.fury.io/py/scikit-learn
26-
27- .. |Python35 | image :: https://img.shields.io/badge/python-3.5-blue.svg
28- .. _Python35 : https://badge.fury.io/py/scikit-learn
24+ .. |PythonVersion | image :: https://img.shields.io/pypi/pyversions/imbalanced-learn.svg
25+ .. _PythonVersion : https://img.shields.io/pypi/pyversions/imbalanced-learn.svg
2926
3027.. |Pypi | image :: https://badge.fury.io/py/imbalanced-learn.svg
3128.. _Pypi : https://badge.fury.io/py/imbalanced-learn
Original file line number Diff line number Diff line change 22
33# This script is used to build and upload package to conda cloud
44# in an automatic manner
5- for pyv in {2.7,3.5,3.6} ; do
6- mkdir build_conda
7- conda build --python=$pyv --output-folder build_conda imbalanced-learn
8- conda convert --platform all build_conda/linux-64/* .tar.bz2 \
9- -o build_conda/
10- dirs=` ls -l " $PWD /build_conda" `
11- for d in build_conda/* / ; do
12- for file in $d *
13- do
14- if [[ -f $file ]]; then
15- # upload each package
16- anaconda upload $file
17- fi
18- done
5+ mkdir build_conda
6+ conda build build_conda imbalanced-learn
7+ dirs=` ls -l " $PWD /build_conda" `
8+ for d in build_conda/* / ; do
9+ for file in $d *
10+ do
11+ if [[ -f $file ]]; then
12+ # upload each package
13+ anaconda upload $file
14+ fi
1915 done
20- rm -r build_conda
2116done
17+ rm -r build_conda
Original file line number Diff line number Diff line change @@ -10,13 +10,9 @@ requirements:
1010 build :
1111 - python
1212 - setuptools
13- - numpy 1.13.*
14- - scipy 0.19.*
1513 - scikit-learn 0.19.*
1614 run :
1715 - python
18- - numpy 1.13.*
19- - scipy 0.19.*
2016 - scikit-learn 0.19.*
2117
2218test :
You can’t perform that action at this time.
0 commit comments