Blame SOURCES/python-sphinxcontrib-trio-1.1.2.patch

4ec7a8
commit 835bb2be9e00c50e5751d271380ac00fe98f8d07
4ec7a8
Author: Karolina Surma <33810531+befeleme@users.noreply.github.com>
4ec7a8
Date:   Tue Jun 15 18:47:42 2021
4ec7a8
4ec7a8
    Replace call to add_stylesheet with add_css_file
4ec7a8
    
4ec7a8
    This should prevent documentation build failures with Sphinx 4.
4ec7a8
4ec7a8
diff --git a/docs/source/conf.py b/docs/source/conf.py
4ec7a8
index c3f6e2f..ab160e1 100644
4ec7a8
--- a/docs/source/conf.py
4ec7a8
+++ b/docs/source/conf.py
4ec7a8
@@ -38,7 +38,7 @@ extensions = [
4ec7a8
 ]
4ec7a8
 
4ec7a8
 def setup(app):
4ec7a8
-    app.add_stylesheet("hack.css")
4ec7a8
+    app.add_css_file("hack.css")
4ec7a8
 
4ec7a8
 intersphinx_mapping = {
4ec7a8
     "sphinx": ("http://www.sphinx-doc.org/en/stable/", None),