From ae0323e7e2ca1af9372342f99bbcf144a5bb7fd5 Mon Sep 17 00:00:00 2001 From: Delgan Date: Sun, 23 Jun 2024 09:40:17 +0200 Subject: [PATCH] Fix Github workflow for unit tests with Pyrhon 3.5 --- .github/workflows/tests.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5ea014f..0659c0c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,15 +18,20 @@ jobs: - '3.8' - '3.9' - '3.10' + - '3.11' + - '3.12' steps: - name: Checkout the repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} + env: + # Workaround for https://github.com/actions/setup-python/issues/866 + PIP_TRUSTED_HOST: pypi.python.org pypi.org files.pythonhosted.org - name: Install dependencies run: |