Skip to content

Commit ceca3da

Browse files
committed
💚 Fix sphinx documentation build errors
The errors & warnings were: ``` doc/source/quickstart.rst:60: WARNING: Title underline too short. Installing Prerequisites ~~~~~~~~~~~~~~~~~~~~~~~ doc/source/quickstart.rst:60: WARNING: Title underline too short. Installing Prerequisites ~~~~~~~~~~~~~~~~~~~~~~~ doc/source/recipes.rst:77: ERROR: Unexpected indentation. doc/source/recipes.rst:75: WARNING: Inline literal start-string without end-string. doc/source/recipes.rst:75: WARNING: Inline interpreted text or phrase reference start-string without end-string. doc/source/recipes.rst:78: WARNING: Block quote ends without a blank line; unexpected unindent. doc/source/recipes.rst:78: WARNING: Inline literal start-string without end-string. WARNING: autodoc: failed to import class 'Recipe' from module 'toolchain'; the following exception was raised: ``` And more errors popped as we fixed the above ones. Full log: https://github.com/kivy/python-for-android/actions/runs/12263397494/job/34218728454
1 parent 11b73f9 commit ceca3da

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

doc/source/quickstart.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ You can also test the master branch from Github using::
5757
pip install git+https://github.com/kivy/python-for-android.git
5858

5959
Installing Prerequisites
60-
~~~~~~~~~~~~~~~~~~~~~~~
60+
~~~~~~~~~~~~~~~~~~~~~~~~
6161

6262
p4a requires a few dependencies to be installed on your system to work
6363
properly. While we're working on a way to automate pre-requisites checks,

doc/source/recipes.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,10 @@ For example, when downloading from a private github repository, you can specify
7373
```
7474

7575
(For the DOWNLOAD_HEADERS_my-package-name environment variable - specify as a JSON formatted set of values)
76-
```
76+
.. code-block:: bash
77+
7778
[["Authorization","token <your personal access token>"],["Accept", "application/vnd.github+json"]]
78-
```
79+
7980
The actual build process takes place via three core methods::
8081

8182
def prebuild_arch(self, arch):

pythonforandroid/recipe.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ class Recipe(metaclass=RecipeMeta):
128128
keys should be the generated libraries and the values the relative path of
129129
the library inside his build folder. This dict will be used to perform
130130
different operations:
131+
131132
- copy the library into the right location, depending on if it's shared
132133
or static)
133134
- check if we have to rebuild the library
@@ -571,7 +572,6 @@ def should_build(self, arch):
571572
'''Should perform any necessary test and return True only if it needs
572573
building again. Per default we implement a library test, in case that
573574
we detect so.
574-
575575
'''
576576
if self.built_libraries:
577577
return not all(
@@ -591,7 +591,7 @@ def install_libraries(self, arch):
591591
'''This method is always called after `build_arch`. In case that we
592592
detect a library recipe, defined by the class attribute
593593
`built_libraries`, we will copy all defined libraries into the
594-
right location.
594+
right location.
595595
'''
596596
if not self.built_libraries:
597597
return

pythonforandroid/toolchain.py

+1
Original file line numberDiff line numberDiff line change
@@ -750,6 +750,7 @@ def recipes(self, args):
750750
"""
751751
Prints recipes basic info, e.g.
752752
.. code-block:: bash
753+
753754
python3 3.7.1
754755
depends: ['hostpython3', 'sqlite3', 'openssl', 'libffi']
755756
conflicts: []

0 commit comments

Comments
 (0)