File tree 3 files changed +14
-25
lines changed
3 files changed +14
-25
lines changed Original file line number Diff line number Diff line change 4
4
5
5
.. _scikit-learn-contrib : https://github.com/scikit-learn-contrib
6
6
7
- |Landscape |_ |Travis |_ |AppVeyor |_ |Codecov |_ |CircleCI |_ |Python27 |_ | Python35 |_ |Pypi |_ |Gitter |_
7
+ |Landscape |_ |Travis |_ |AppVeyor |_ |Codecov |_ |CircleCI |_ |PythonVersion |_ |Pypi |_ |Gitter |_
8
8
9
9
.. |Landscape | image :: https://landscape.io/github/scikit-learn-contrib/imbalanced-learn/master/landscape.svg?style=flat
10
10
.. _Landscape : https://landscape.io/github/scikit-learn-contrib/imbalanced-learn/master
21
21
.. |CircleCI | image :: https://circleci.com/gh/scikit-learn-contrib/imbalanced-learn.svg?style=shield&circle-token=:circle-token
22
22
.. _CircleCI : https://circleci.com/gh/scikit-learn-contrib/imbalanced-learn/tree/master
23
23
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
29
26
30
27
.. |Pypi | image :: https://badge.fury.io/py/imbalanced-learn.svg
31
28
.. _Pypi : https://badge.fury.io/py/imbalanced-learn
Original file line number Diff line number Diff line change 2
2
3
3
# This script is used to build and upload package to conda cloud
4
4
# 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
19
15
done
20
- rm -r build_conda
21
16
done
17
+ rm -r build_conda
Original file line number Diff line number Diff line change @@ -10,13 +10,9 @@ requirements:
10
10
build :
11
11
- python
12
12
- setuptools
13
- - numpy 1.13.*
14
- - scipy 0.19.*
15
13
- scikit-learn 0.19.*
16
14
run :
17
15
- python
18
- - numpy 1.13.*
19
- - scipy 0.19.*
20
16
- scikit-learn 0.19.*
21
17
22
18
test :
You can’t perform that action at this time.
0 commit comments