From 62bf9350aa2c59d8d7a48f6d19a2af9bb19978da Mon Sep 17 00:00:00 2001 From: Felix Matouschek Date: Mon, 4 May 2026 11:10:12 +0200 Subject: [PATCH] fix(ci): pin Python to 3.13 for docs build Python 3.14 removed pkg_resources, which breaks ansible_basic_sphinx_ext. Pin to 3.13 until the upstream dependency is updated. Co-Authored-By: Claude Opus 4.6 (1M context) Signed-off-by: Felix Matouschek --- .github/workflows/docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 9cd1d76..1fdd816 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -30,7 +30,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v6 with: - python-version: 3.x + python-version: "3.13" cache: pip - name: Install doc dependencies