From be86c7d73c60f01baa61c96c4d60dcc7e336038f Mon Sep 17 00:00:00 2001 From: Lukas Gold Date: Tue, 22 Sep 2026 16:22:33 +0200 Subject: [PATCH] docs: point repo links at the versioned /latest/ docs paths - mike serves pages only under version directories; the root is a redirect - README /get-started/ was a 404, /tools/ served the superseded July build - CONTRIBUTING /dev/ resolved to mike's dev version, not the dev guide - root links in pyproject.toml and CITATION.cff stay unversioned --- CONTRIBUTING.md | 2 +- README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 62b26358..17d723c7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -19,7 +19,7 @@ make install # environment + pre-commit hooks 4. Commit, push and open a pull request `make help` lists all targets; the -[development guide](https://opensemanticlab.github.io/osw-python/dev/) +[development guide](https://opensemanticlab.github.io/osw-python/latest/dev/) covers details such as running the integration tests and serving the docs locally. diff --git a/README.md b/README.md index c3c4be62..d6f6888c 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ pip install osw Optional extras (`osw[wikitext]`, `osw[DB]`, `osw[S3]`, `osw[dataimport]`, `osw[UI]`, `osw[mcp]`, `osw[all]`) are described in the -[Get Started guide](https://opensemanticlab.github.io/osw-python/get-started/). +[Get Started guide](https://opensemanticlab.github.io/osw-python/latest/get-started/). ## Quickstart @@ -50,14 +50,14 @@ osw search ask '[[Category:Item]]' --limit 5 ``` Commands, tools and their configuration are described in the -[Tools guide](https://opensemanticlab.github.io/osw-python/tools/). +[Tools guide](https://opensemanticlab.github.io/osw-python/latest/tools/). ## Logging osw reports what it is doing on the `osw` logger at INFO by default. Levels, the `OSW_LOG_LEVEL` environment variable and how to collect the records in your own logging setup are described in the -[Get Started guide](https://opensemanticlab.github.io/osw-python/get-started/#logging). +[Get Started guide](https://opensemanticlab.github.io/osw-python/latest/get-started/#logging). ## Contributing