File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 25
25
run : sleep 60
26
26
27
27
- name : Set up Python
28
- uses : actions/setup-python@v2
28
+ uses : actions/setup-python@v5
29
29
with :
30
30
python-version : 3.12
31
31
@@ -52,12 +52,14 @@ jobs:
52
52
uses : actions/cache@v4
53
53
with :
54
54
path : |
55
- docs/_build/ .jupyter_cache
55
+ docs/.jupyter_cache
56
56
key : docs-jupyter-cache
57
57
58
58
- name : Build docs
59
59
run : |
60
- cd docs; python -m sphinx -b dirhtml . _build; cd ..
60
+ python -c "import optimap; print(optimap.__version__)"
61
+ jcache -p docs/.jupyter_cache notebook list
62
+ python -m sphinx -b html --doctree-dir docs/doctrees docs docs/_build
61
63
env :
62
64
TQDM_MININTERVAL : 20
63
65
Original file line number Diff line number Diff line change @@ -100,6 +100,7 @@ def remove_markdown(cell):
100
100
nb_execution_mode = "cache"
101
101
nb_execution_timeout = 600 # seconds
102
102
nb_execution_excludepatterns = ['tutorials/converted/*' ]
103
+ jupyter_cache = str (Path (__file__ ).parent / ".jupyter_cache" )
103
104
104
105
# add_module_names = False
105
106
# napoleon_google_docstring = False
You can’t perform that action at this time.
0 commit comments