Skip to content

Commit c0d6082

Browse files
committed
x
1 parent 5dbfe66 commit c0d6082

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/pages.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Set up Python
2222
uses: actions/setup-python@v4
2323
with:
24-
python-version: "3.10" # Adjust to your preferred Python version
24+
python-version: "3.12" # Adjust to your preferred Python version
2525

2626
# Step 3: Set PYTHONPATH
2727
- name: Set PYTHONPATH
@@ -34,6 +34,9 @@ jobs:
3434
pip install sphinx furo # Add any additional dependencies here
3535
pip install . # Install your module
3636
37+
- name: Debug sqlite_manager import
38+
run: python -c "import sqlite_manager; print(sqlite_manager.__doc__)"
39+
3740
# Step 5: Build the documentation
3841
- name: Build Sphinx documentation
3942
run: |

0 commit comments

Comments
 (0)