File tree Expand file tree Collapse file tree 1 file changed +13
-11
lines changed Expand file tree Collapse file tree 1 file changed +13
-11
lines changed Original file line number Diff line number Diff line change 93
93
if : steps.docs-cache.outputs.cache-hit != 'true'
94
94
name : Setup Python
95
95
with :
96
- python-version : " 3.10 "
96
+ python-version : " 3.12 "
97
97
98
98
- name : Build virtualenv
99
99
if : steps.docs-cache.outputs.cache-hit != 'true'
@@ -131,16 +131,16 @@ jobs:
131
131
git submodule update --init --recursive
132
132
git status
133
133
134
- # - name: Build virtualenv
135
- # if: steps.docs-cache.outputs.cache-hit != 'true'
136
- # run: python -m venv venv-stable
137
- #
138
- # - name: Install deps
139
- # if: steps.docs-cache.outputs.cache-hit != 'true'
140
- # run: |
141
- # venv-stable/bin/activate
142
- # [ -f requirements/CI-docs/requirements.txt ] && pip install -r requirements/CI-docs/requirements.txt
143
- # [ -f requirements/development.txt ] && pip install -r requirements/development.txt
134
+ - name : Build virtualenv
135
+ if : steps.docs-cache.outputs.cache-hit != 'true'
136
+ run : python -m venv venv-stable
137
+
138
+ - name : Install deps
139
+ if : steps.docs-cache.outputs.cache-hit != 'true'
140
+ run : |
141
+ venv-stable/bin/activate
142
+ [ -f requirements/CI-docs/requirements.txt ] && pip install -r requirements/CI-docs/requirements.txt
143
+
144
144
- name : Build C module
145
145
if : steps.docs-cache.outputs.cache-hit != 'true'
146
146
run : venv-latest/bin/activate && make
@@ -150,6 +150,8 @@ jobs:
150
150
run : |
151
151
rm -rf docs/_build
152
152
venv-latest/bin/activate
153
+ # Fix ipython error
154
+ pip install ipython==8.37.0
153
155
cd docs
154
156
# Fix section reference in demography.md
155
157
if [ -f demography.md ]; then
You can’t perform that action at this time.
0 commit comments