From 8d316f263c2c28105e140dd0ce2045e9845bfe70 Mon Sep 17 00:00:00 2001 From: Adrian D'Alessandro Date: Wed, 23 Oct 2024 15:54:59 +0100 Subject: [PATCH] Set default python version to 3.12 in tests This is to test if issue #329 can be reproduced --- .github/workflows/ci_template.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_template.yml b/.github/workflows/ci_template.yml index a3c731c2..4d073c26 100644 --- a/.github/workflows/ci_template.yml +++ b/.github/workflows/ci_template.yml @@ -12,7 +12,7 @@ on: type: string python-version: description: 'Python version' - default: '["3.10"]' + default: '["3.12"]' type: string jobs: @@ -36,7 +36,7 @@ jobs: run: pytest - name: Upload coverage to Codecov - if: success() && (matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10') + if: success() && (matrix.os == 'ubuntu-latest' && matrix.python-version == '3.12') uses: codecov/codecov-action@v4 with: fail_ci_if_error: true