File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed
bindings/ergo-lib-python/docs Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -188,7 +188,7 @@ jobs:
188
188
with :
189
189
python-version : 3.x
190
190
- name : Activate virtualenv
191
- run : " python -m venv .env && source .env /bin/activate && echo PATH=$PATH >> $GITHUB_ENV"
191
+ run : " python -m venv .venv && source .venv /bin/activate && echo PATH=$PATH >> $GITHUB_ENV"
192
192
- name : Maturin develop
193
193
uses : PyO3/maturin-action@v1
194
194
with :
@@ -203,7 +203,9 @@ jobs:
203
203
run : " python -m unittest tests/*.py"
204
204
- name : Test stubs
205
205
working-directory : bindings/ergo-lib-python
206
- run : " stubtest ergo_lib_python"
206
+ # run: 'python -c "import ergo_lib_python; print(ergo_lib_python.__all__)"'
207
+ run : echo $PATH
208
+ # run: "stubtest ergo_lib_python"
207
209
- name : Run doctests
208
210
working-directory : bindings/ergo-lib-python
209
- run : " cd docs && make doctest"
211
+ run : " source ../../.venv/bin/activate && cd docs && make doctest"
Original file line number Diff line number Diff line change
1
+ mypy == 1.15.0
2
+ Sphinx == 8.1.3
3
+ sphinx-autoapi == 3.6.0
4
+ sphinx-rtd-theme == 3.0.2
5
+
You can’t perform that action at this time.
0 commit comments