File tree Expand file tree Collapse file tree 5 files changed +799
-3
lines changed Expand file tree Collapse file tree 5 files changed +799
-3
lines changed Original file line number Diff line number Diff line change 11version : 2
22build :
3- os : ubuntu-22 .04
3+ os : ubuntu-24 .04
44 tools :
5- python : " 3.12 "
5+ python : " 3.13 "
66sphinx :
77 configuration : conf.py
88 fail_on_warning : true
File renamed without changes.
Original file line number Diff line number Diff line change 11from __future__ import annotations
22
3+ import os
34from datetime import UTC , datetime
45from importlib .metadata import metadata
56from types import MappingProxyType
6364 use_repository_button = True ,
6465)
6566html_static_path = ["_static" ]
66- html_css_files = ["css/custom.css" ]
67+ # include a warning background on RTD for everything but PR builds
68+ html_css_files = (
69+ ["css/warning.css" ]
70+ if os .environ .get ("READTHEDOCS" ) and os .environ .get ("READTHEDOCS_VERSION_TYPE" ) != "external"
71+ else []
72+ )
6773html_logo = "_static/img/Scanpy_Logo_BrightFG.svg"
6874
6975# -- Notebook settings ----------------------------------------------------
You can’t perform that action at this time.
0 commit comments