From a0573785c140277f59a2032ff1f454cc68c4c08e Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Thu, 28 Mar 2024 09:55:57 +0100 Subject: [PATCH] chore(CI): use Python 3.12 (#4961) Python 3.12 can cause issues because `distutils` was removed from the Standard Library. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 620b54459ea..f2dff862bbf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,7 +45,7 @@ jobs: - name: Setup python3 uses: actions/setup-python@v5 with: - python-version: "3.11" + python-version: "3.x" - run: pip install pynvim - name: Setup vim