Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ updates:
patterns:
- "@babylonjs*"

- package-ecosystem: "pip"
- package-ecosystem: "uv"
directory: "/docs"
schedule:
interval: "daily"
6 changes: 4 additions & 2 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version: 2

# Set the version of Python and other tools you might need
build:
os: ubuntu-22.04
os: ubuntu-24.04
tools:
python: "3"
nodejs: "20"
Expand All @@ -32,4 +32,6 @@ formats: all
# Optionally declare the Python requirements required to build your docs
python:
install:
- requirements: docs/requirements.txt
- method: uv
command: sync
path: docs
1 change: 1 addition & 0 deletions docs/.python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.14
4 changes: 2 additions & 2 deletions docs/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ Set-Location ../visualiser
npm update --save
npm run build
Set-Location ../docs
pip install --user -r requirements.txt --upgrade --upgrade-strategy eager
python -m sphinx . _build -E -a
uv lock --upgrade
uv run python -m sphinx . _build -E -a
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@

# General information about the project.
project = u'BoxPacker'
copyright = u'2012-2025, Doug Wright'
copyright = u'2012-2026, Doug Wright'
author = u'Doug Wright'

# The version info for the project you're documenting, acts as replacement for
Expand All @@ -67,7 +67,7 @@
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This patterns also effect to html_static_path and html_extra_path
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', '.venv']

# The name of the Pygments (syntax highlighting) style to use.
pygments_style = 'friendly'
Expand Down
8 changes: 8 additions & 0 deletions docs/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[project]
name = "docs"
version = "1.0.0"
requires-python = ">=3.14"
dependencies = [
"myst-parser~=4.0",
"sphinx-rtd-theme~=3.0",
]
420 changes: 420 additions & 0 deletions docs/uv.lock

Large diffs are not rendered by default.

Loading
Loading