File tree 5 files changed +8
-6
lines changed
5 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 9
9
10
10
steps :
11
11
- uses : actions/checkout@v2
12
-
12
+
13
13
# Note that miniconda is installed by default in environments
14
14
- name : Set up conda environment
15
15
uses : conda-incubator/setup-miniconda@v2
@@ -25,16 +25,17 @@ jobs:
25
25
echo $CONDA/bin >> $GITHUB_PATH
26
26
export PATH="$CONDA/bin:$PATH"
27
27
conda init bash
28
-
28
+
29
29
- name : Setup python requirements
30
30
run : |
31
31
source activate datascience
32
32
python -m pip install --upgrade pip
33
33
python -m pip --version
34
34
python -m pip install -r requirements.txt
35
+ python -m pip install -r docs/requirements.txt
35
36
python -m pip install -r requirements-tests.txt
36
37
python setup.py develop
37
-
38
+
38
39
- name : Run Tests
39
40
run : |
40
41
source activate datascience
Original file line number Diff line number Diff line change 1
- __version__ = '0.17.0 '
1
+ __version__ = '0.17.1 '
Original file line number Diff line number Diff line change
1
+ sphinx
2
+ nbsphinx
Original file line number Diff line number Diff line change @@ -12,5 +12,6 @@ python:
12
12
version : 3.6
13
13
install :
14
14
- requirements : requirements.txt
15
+ - requirements : docs/requirements.txt
15
16
- method : setuptools
16
17
path : .
Original file line number Diff line number Diff line change 1
1
folium >= 0.9.1
2
- sphinx
3
2
setuptools
4
3
matplotlib >= 3.0.0
5
4
pandas
8
7
ipython
9
8
plotly
10
9
branca
11
- nbsphinx
You can’t perform that action at this time.
0 commit comments