You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/faq.rst
+11-26Lines changed: 11 additions & 26 deletions
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ If you are still seeing errors because of C library dependencies, please see the
11
11
How do I change behavior for Read the Docs?
12
12
-------------------------------------------
13
13
14
-
When RTD builds your project, it sets the `READTHEDOCS` environment variable to the string `True`. So within your Sphinx's conf.py file, you can vary the behavior based on this. For example::
14
+
When RTD builds your project, it sets the `READTHEDOCS` environment variable to the string `True`. So within your Sphinx's ``conf.py`` file, you can vary the behavior based on this. For example::
@@ -34,37 +34,22 @@ I get import errors on libraries that depend on C modules
34
34
35
35
This happens because our build system doesn't have the dependencies for building your project. This happens with things like libevent and mysql, and other python things that depend on C libraries. We can't support installing random C binaries on our system, so there is another way to fix these imports.
36
36
37
-
You can mock out the imports for these modules in your conf.py with the following snippet::
37
+
You can mock out the imports for these modules in your ``conf.py`` with the following snippet::
0 commit comments