Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ version: 2
build:
os: "ubuntu-22.04"
tools:
python: "3.13"
python: "3.14"
apt_packages:
- plantuml

Expand All @@ -26,7 +26,7 @@ build:

# Install dependencies using `uv`.
install:
- uv pip install -r docs/requirements.txt
- uv pip install --upgrade -r docs/requirements.txt

# Bundle assets, because `pip install --editable=.` does not do it.
pre_build:
Expand Down
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Unreleased
- Made driver projects use a standalone primary navigation
- Removed outmoded database drivers section
- Added external-link icon to Support and Community TOC entries.
- Dependencies: Permitted installation of Sphinx 9.x

2026/01/14 0.47.0
-----------------
Expand Down
5 changes: 5 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,8 @@
intersphinx_mapping["myst"] = ("https://myst-parser.readthedocs.io/en/latest/", None)
intersphinx_mapping["sd"] = ("https://sphinx-design.readthedocs.io/en/latest/", None)
intersphinx_mapping["sde"] = ("https://sphinx-design-elements.readthedocs.io/en/latest/", None)


linkcheck_ignore += [
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why is this required?

Copy link
Member Author

@amotl amotl Jan 21, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just some project-local rate limiting against github.com when building the docs here.

"https://github.com/",
]
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@
"jinja2>=3,<4",
"jupysql<0.12",
"myst-nb<1.4",
"myst-parser[linkify]<5",
"myst-parser[linkify]<6",
"snowballstemmer<4",
"sphinx>=7.1,<9",
"sphinx>=7.1,<10",
"sphinx-basic-ng==1.0.0b2",
"sphinx-copybutton>=0.3.1,<1",
"sphinx-design-elements==0.4.1",
"sphinx-design-elements<0.5",
"sphinx-inline-tabs",
"sphinx-sitemap<2.10.0",
"sphinx-togglebutton<1",
Expand Down