We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5dbfe66 commit c0d6082Copy full SHA for c0d6082
.github/workflows/pages.yml
@@ -21,7 +21,7 @@ jobs:
21
- name: Set up Python
22
uses: actions/setup-python@v4
23
with:
24
- python-version: "3.10" # Adjust to your preferred Python version
+ python-version: "3.12" # Adjust to your preferred Python version
25
26
# Step 3: Set PYTHONPATH
27
- name: Set PYTHONPATH
@@ -34,6 +34,9 @@ jobs:
34
pip install sphinx furo # Add any additional dependencies here
35
pip install . # Install your module
36
37
+ - name: Debug sqlite_manager import
38
+ run: python -c "import sqlite_manager; print(sqlite_manager.__doc__)"
39
+
40
# Step 5: Build the documentation
41
- name: Build Sphinx documentation
42
run: |
0 commit comments