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
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ database-like format without needing to learn SQL or use a full ORM.
> The `async` feature is new. It is covered by tests and expected to work, but
> treat it with some caution until it has seen a few releases of real-world use.
>
> See the [TODO](TODO.md) for planned features and improvements.
> See the [TODO](todo/index.md) for planned features and improvements.

## Features

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@ changelog.help = "Generate a changelog"
"docs:publish".help = "Publish documentation to GitHub Pages"
"docs:build".cmd = "mkdocs build"
"docs:build".help = "Build documentation locally to './site' folder"
"docs:serve".cmd = "mkdocs serve -w TODO.md -w CHANGELOG.md -w CONTRIBUTING.md"
"docs:serve".cmd = "mkdocs serve -w TODO.md -w CHANGELOG.md -w CONTRIBUTING.md --livereload"
"docs:serve".help = "Serve documentation locally"
"docs:serve:all".cmd = "mkdocs serve -w TODO.md -w CHANGELOG.md -w CONTRIBUTING.md -a 0.0.0.0:9000"
"docs:serve:all".cmd = "mkdocs serve -w TODO.md -w CHANGELOG.md -w CONTRIBUTING.md -a 0.0.0.0:9000 --livereload"
"docs:serve:all".help = "Serve documentation locally on all interfaces"

[tool.ruff]
Expand Down
10 changes: 5 additions & 5 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ cffi==2.0.0 ; platform_python_implementation != 'PyPy'
# pynacl
charset-normalizer==3.4.2
# via requests
click==8.2.1
click==8.3.3
# via
# mkdocs
# typer
Expand All @@ -31,7 +31,7 @@ colorama==0.4.6
# pytest
coverage==7.13.5
# via pytest-cov
cryptography==46.0.5
cryptography==48.0.0
# via pyjwt
csscompressor==0.9.5
# via mkdocs-minify-plugin
Expand Down Expand Up @@ -126,7 +126,7 @@ pygments==2.20.0
# rich
pyjwt==2.12.1
# via pygithub
pymdown-extensions==10.20
pymdown-extensions==10.21.2
# via mkdocs-material
pynacl==1.6.2
# via pygithub
Expand Down Expand Up @@ -158,7 +158,7 @@ pyyaml==6.0.3
# pyyaml-env-tag
pyyaml-env-tag==1.1
# via mkdocs
requests==2.32.5
requests==2.33.1
# via
# mkdocs-material
# pygithub
Expand Down Expand Up @@ -203,7 +203,7 @@ typing-extensions==4.15.0
# typing-inspection
typing-inspection==0.4.2
# via pydantic
urllib3==2.6.3
urllib3==2.7.0
# via
# pygithub
# requests
Expand Down
Loading
Loading