Skip to content

Commit d144240

Browse files
committed
Remove sphinx + nbsphinx from requirements.txt
- Moves it to doc-requirements.txt, as they are only required for docs building - Bump the version of the package Fixes #523
1 parent 5722a87 commit d144240

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

.github/workflows/run_tests.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
steps:
1111
- uses: actions/checkout@v2
12-
12+
1313
# Note that miniconda is installed by default in environments
1414
- name: Set up conda environment
1515
uses: conda-incubator/setup-miniconda@v2
@@ -25,16 +25,17 @@ jobs:
2525
echo $CONDA/bin >> $GITHUB_PATH
2626
export PATH="$CONDA/bin:$PATH"
2727
conda init bash
28-
28+
2929
- name: Setup python requirements
3030
run: |
3131
source activate datascience
3232
python -m pip install --upgrade pip
3333
python -m pip --version
3434
python -m pip install -r requirements.txt
35+
python -m pip install -r docs/requirements.txt
3536
python -m pip install -r requirements-tests.txt
3637
python setup.py develop
37-
38+
3839
- name: Run Tests
3940
run: |
4041
source activate datascience

datascience/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.17.0'
1+
__version__ = '0.17.1'

docs/requirements.txt

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
sphinx
2+
nbsphinx

readthedocs.yml

+1
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,6 @@ python:
1212
version: 3.6
1313
install:
1414
- requirements: requirements.txt
15+
- requirements: docs/requirements.txt
1516
- method: setuptools
1617
path: .

requirements.txt

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
folium>=0.9.1
2-
sphinx
32
setuptools
43
matplotlib>=3.0.0
54
pandas
@@ -8,4 +7,3 @@ numpy
87
ipython
98
plotly
109
branca
11-
nbsphinx

0 commit comments

Comments
 (0)