Skip to content

Commit 9633323

Browse files
committed
use conda to get more recent nodejs
RTD nodejs is too old, and conda install appears to be the only way to get a bump
1 parent 1a68cf2 commit 9633323

2 files changed

Lines changed: 20 additions & 0 deletions

File tree

docs/environment.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: ipyparallel-docs
2+
channels:
3+
- conda-forge
4+
dependencies:
5+
- python=3.8
6+
- pip
7+
8+
- sphinx>=1.8
9+
- sphinx-copybutton
10+
- pydata-sphinx-theme
11+
- nbsphinx
12+
- myst-parser
13+
14+
- matplotlib
15+
# nodejs needed for extension build
16+
- nodejs

readthedocs.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,16 @@ version: 2
33
sphinx:
44
configuration: docs/source/conf.py
55

6+
conda:
7+
environment: docs/environment.yml
8+
69
build:
710
image: latest
811

912
python:
1013
version: 3.8
1114
install:
15+
# install ipp itself
1216
- method: pip
1317
path: .
1418
- requirements: docs/requirements.txt

0 commit comments

Comments
 (0)