File tree Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Documentation
2
+
3
+ on :
4
+ pull_request :
5
+ push :
6
+ branches :
7
+ - master
8
+ - develop
9
+
10
+ jobs :
11
+ build :
12
+ runs-on : ubuntu-latest
13
+ env :
14
+ MPLBACKEND : svg
15
+ PYDEVD_DISABLE_FILE_VALIDATION : 1
16
+ strategy :
17
+ fail-fast : false
18
+
19
+ steps :
20
+ - uses : actions/checkout@v3
21
+ - name : Set up Python 3.11
22
+ uses : actions/setup-python@v4
23
+ with :
24
+ python-version : 3.11
25
+ - name : Install dependencies
26
+ run : |
27
+ python -m pip install --upgrade pip
28
+ pip install -U setuptools setuptools_scm wheel
29
+ pip install -e .[all,docs]
30
+ sudo apt-get install pandoc
31
+ - name : Build docs
32
+ run : sphinx-build -b html docs _build/html
Original file line number Diff line number Diff line change 87
87
pyvista[all,jupyter]
88
88
trame<3
89
89
ipywidgets
90
+ ipython<8.17.0 # https://github.com/ipython/ipython/issues/14235
91
+ ipykernel
90
92
xvfbwrapper
91
93
92
94
You can’t perform that action at this time.
0 commit comments