Skip to content

Commit e24479e

Browse files
committed
a
1 parent 7119f54 commit e24479e

4 files changed

Lines changed: 13 additions & 41 deletions

File tree

docs/conf.py

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,29 @@
1-
# -- Project information -----------------------------------------------------
21
project = "pyXenium"
32
author = "Taobo Hu"
43

5-
# -- General configuration ---------------------------------------------------
64
extensions = [
75
"myst_parser",
86
]
97

8+
# Treat .md as MyST markdown explicitly
9+
source_suffix = {
10+
".rst": "restructuredtext",
11+
".md": "myst",
12+
}
13+
1014
myst_enable_extensions = [
1115
"colon_fence",
1216
"deflist",
1317
"linkify",
1418
]
1519

1620
templates_path = ["_templates"]
17-
exclude_patterns = []
21+
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
1822

19-
# -- Options for HTML output -------------------------------------------------
2023
html_theme = "furo"
2124
html_static_path = ["_static"]
2225

23-
# Copy README.md from repo root into docs/_includes so it can be safely included
26+
# Copy README.md into docs/_includes for safe include
2427
import os
2528
from pathlib import Path
2629
import shutil

docs/examples/partial_xenium_loader.md

Lines changed: 0 additions & 29 deletions
This file was deleted.

docs/requirements.txt

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1-
sphinx>=7
2-
myst-parser>=2
3-
furo>=2024.0.0
1+
sphinx>=7.2,<8
2+
myst-parser>=2,<3
3+
furo>=2024.8.6
4+
# Prevent known incompatibilities with Sphinx<8
5+
docutils<0.21

docs/usage.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)