From 1c81a90e12f7c225aa509cdf977b4f1700377328 Mon Sep 17 00:00:00 2001 From: iequidoo Date: Mon, 21 Aug 2023 19:15:29 -0300 Subject: [PATCH] ci: Python tests: Temporarily hardcode Python version to 3.7 It's needed to fix CI until https://github.com/breathe-doc/breathe/issues/943 is done. --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 48a96f3c6..64342bc64 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -205,10 +205,12 @@ jobs: name: ${{ matrix.os }}-libdeltachat.a path: target/debug + # TODO: Temporarily hardcode Python version to 3.7 until + # https://github.com/breathe-doc/breathe/issues/943 is done. - name: Install python uses: actions/setup-python@v4 with: - python-version: ${{ matrix.python }} + python-version: 3.7 - name: Install tox run: pip install tox