From 72b8051901b13c1469229a9af9ff9b3a3a79abd8 Mon Sep 17 00:00:00 2001 From: Remylus Losius Date: Wed, 27 May 2026 21:10:54 -0400 Subject: [PATCH] fix(backend): point kensa requirement at archive repo The Hanalyx/kensa repository is now the Go rebuild; the legacy Python package lives in Hanalyx/kensa-archive at the same v1.2.5 tag. pip install was failing because git+https://github.com/Hanalyx/kensa.git no longer resolves to a pip-installable package. This is a Python-backend hotfix only. No OpenWatch Go changes. --- backend/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/requirements.txt b/backend/requirements.txt index 8f96a7e5..0a11bd81 100644 --- a/backend/requirements.txt +++ b/backend/requirements.txt @@ -71,4 +71,4 @@ authlib>=1.3.0 pysaml2>=7.5.0 # Kensa compliance engine -kensa @ git+https://github.com/Hanalyx/kensa.git@v1.2.5 +kensa @ git+https://github.com/Hanalyx/kensa-archive.git@v1.2.5