From 1ce0bc143f0415c9209d0bc4a612e7f9da2a2db2 Mon Sep 17 00:00:00 2001 From: Stefan Gula Date: Thu, 7 Dec 2023 12:34:52 +0100 Subject: [PATCH] Fix tox/lint issue with python3.12 This patch force usage of python 3.11 for tox/lint workflows in github as it doesn't work with python 3.12 and above --- .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 4c308738..51e0edef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: - python-version: 3.x + python-version: 3.11 - uses: actions/cache@v3 with: path: ~/.cache/pip