Skip to content

Commit 020f424

Browse files
Add cell cycle scoring notebook (#195)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent c08211e commit 020f424

File tree

5 files changed

+799
-3
lines changed

5 files changed

+799
-3
lines changed

.readthedocs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
version: 2
22
build:
3-
os: ubuntu-22.04
3+
os: ubuntu-24.04
44
tools:
5-
python: "3.12"
5+
python: "3.13"
66
sphinx:
77
configuration: conf.py
88
fail_on_warning: true
File renamed without changes.

conf.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from __future__ import annotations
22

3+
import os
34
from datetime import UTC, datetime
45
from importlib.metadata import metadata
56
from types import MappingProxyType
@@ -63,7 +64,12 @@
6364
use_repository_button=True,
6465
)
6566
html_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+
)
6773
html_logo = "_static/img/Scanpy_Logo_BrightFG.svg"
6874

6975
# -- Notebook settings ----------------------------------------------------

0 commit comments

Comments
 (0)