File tree Expand file tree Collapse file tree 4 files changed +14
-8
lines changed Expand file tree Collapse file tree 4 files changed +14
-8
lines changed Original file line number Diff line number Diff line change @@ -51,6 +51,8 @@ if [[ "$DISTRIB" == "conda" ]]; then
51
51
# Install nose-timer via pip
52
52
pip install nose-timer codecov
53
53
54
+ conda install sphinx numpydoc
55
+
54
56
elif [[ " $DISTRIB " == " ubuntu" ]]; then
55
57
# At the time of writing numpy 1.9.1 is included in the travis
56
58
# virtualenv but we want to use the numpy installed through apt-get
@@ -59,7 +61,8 @@ elif [[ "$DISTRIB" == "ubuntu" ]]; then
59
61
# Create a new virtualenv using system site packages for python, numpy
60
62
virtualenv --system-site-packages testvenv
61
63
source testvenv/bin/activate
62
- pip install scikit-learn pandas nose nose-timer pytest pytest-cov codecov
64
+ pip install scikit-learn pandas nose nose-timer pytest pytest-cov codecov \
65
+ sphinx numpydoc
63
66
64
67
fi
65
68
Original file line number Diff line number Diff line change
1
+ # Automatically build and upload on conda channel
2
+
3
+ * Edit ` meta.yml ` and update the dependencies version.
Original file line number Diff line number Diff line change 5
5
for pyv in {2.7,3.5,3.6} ; do
6
6
mkdir build_conda
7
7
conda build --python=$pyv --output-folder build_conda imbalanced-learn
8
- conda convert --platform all build_conda/* .tar.bz2 \
8
+ conda convert --platform all build_conda/linux-64/ * .tar.bz2 \
9
9
-o build_conda/
10
10
dirs=` ls -l " $PWD /build_conda" `
11
11
for d in build_conda/* / ; do
Original file line number Diff line number Diff line change @@ -10,14 +10,14 @@ requirements:
10
10
build :
11
11
- python
12
12
- setuptools
13
- - numpy
14
- - scipy
15
- - scikit-learn
13
+ - numpy 1.13.*
14
+ - scipy 0.19.*
15
+ - scikit-learn 0.19.*
16
16
run :
17
17
- python
18
- - numpy
19
- - scipy
20
- - scikit-learn
18
+ - numpy 1.13.*
19
+ - scipy 0.19.*
20
+ - scikit-learn 0.19.*
21
21
22
22
test :
23
23
requires :
You can’t perform that action at this time.
0 commit comments