From c583d9b3515bf405cce4fccff4a9d706f0a61c51 Mon Sep 17 00:00:00 2001 From: David Garcia Date: Thu, 12 Feb 2026 17:35:13 +0000 Subject: [PATCH] fix: https://python-driver.docs.scylladb.com/ returns 404 The current version in [conf.py](https://github.com/scylladb/python-driver/blob/master/docs/conf.py#L35) is: > LATEST_VERSION = '3.29.8-scylla' This version tag does not exist in the releases: https://github.com/scylladb/python-driver/releases, causing 404 errors. This change sets it back to 3.29.7. --- docs/conf.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 403908c29e..1b0361db39 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -28,11 +28,10 @@ '3.29.5-scylla', '3.29.6-scylla', '3.29.7-scylla', - '3.29.8-scylla', ] BRANCHES = ['master'] # Set the latest version. -LATEST_VERSION = '3.29.8-scylla' +LATEST_VERSION = '3.29.7-scylla' # Set which versions are not released yet. UNSTABLE_VERSIONS = ['master'] # Set which versions are deprecated