Commit f109350 1 parent a7a314e commit f109350 Copy full SHA for f109350
File tree 5 files changed +38
-4
lines changed
5 files changed +38
-4
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: Build and Deploy Sphinx Documentation
3
3
on :
4
4
push :
5
5
branches :
6
- - main # ou le nom de votre branche principale
6
+ - main # or your default branch
7
7
8
8
jobs :
9
9
build-and-deploy :
@@ -22,11 +22,24 @@ jobs:
22
22
run : |
23
23
python -m pip install --upgrade pip
24
24
pip install sphinx sphinx_rtd_theme nbsphinx
25
+ pip install .
26
+ pip freeze
27
+
28
+ - name : Debug environment
29
+ run : |
30
+ pwd
31
+ ls -R
32
+ python -c "import pandalchemy; print(pandalchemy.__file__)"
33
+ python -c "from pandalchemy import methods; print(methods.__file__)"
25
34
26
35
- name : Build Documentation
27
36
run : |
28
37
cd docs
29
- make html
38
+ sphinx-build -b html . _build/html -v # Verbose output
39
+
40
+ - name : Check build output
41
+ run : |
42
+ ls -R docs/_build/html
30
43
31
44
- name : Deploy to GitHub Pages
32
45
uses : peaceiris/actions-gh-pages@v3
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
API Reference
2
2
=============
3
3
4
+ Methods
5
+ -------
6
+
4
7
.. automodule :: pandalchemy.methods
5
8
:members:
6
9
:undoc-members:
7
- :show-inheritance:
10
+ :show-inheritance:
11
+
12
+ Individual Functions
13
+ --------------------
14
+
15
+ .. autofunction :: pandalchemy.methods.select
16
+ .. autofunction :: pandalchemy.methods.where_
17
+ .. autofunction :: pandalchemy.methods.group_by
18
+
19
+ # Add more functions as needed
Original file line number Diff line number Diff line change 9
9
import os
10
10
import sys
11
11
sys .path .insert (0 , os .path .abspath ('..' ))
12
+ print ("Python path:" , sys .path )
12
13
13
14
project = 'pandalchemy'
14
15
copyright = '2024, Essi Parent'
Original file line number Diff line number Diff line change @@ -16,4 +16,12 @@ documentation for details.
16
16
:caption: Contents:
17
17
18
18
api
19
- examples/basic-usage
19
+ _examples/basic-usage
20
+
21
+
22
+ Indices and tables
23
+ ==================
24
+
25
+ * :ref: `genindex `
26
+ * :ref: `modindex `
27
+ * :ref: `search `
You can’t perform that action at this time.
0 commit comments