From 0adb0132503e8a8c55b71665c7c43f7d38010e1d Mon Sep 17 00:00:00 2001 From: Kyle Swanson Date: Sun, 4 Aug 2024 14:38:29 +0100 Subject: [PATCH] Updating python versions in tests --- .github/workflows/code-coverage.yml | 4 ++-- .github/workflows/tests.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/code-coverage.yml b/.github/workflows/code-coverage.yml index a208b61..3bc5339 100644 --- a/.github/workflows/code-coverage.yml +++ b/.github/workflows/code-coverage.yml @@ -6,13 +6,13 @@ jobs: run: runs-on: ubuntu-latest env: - PYTHON: '3.10' + PYTHON: '3.12' steps: - uses: actions/checkout@main - name: Setup Python uses: actions/setup-python@main with: - python-version: '3.10' + python-version: '3.12' - name: Generate coverage report run: | git config --global user.email "you@example.com" diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 124321e..b56d241 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: ['3.7', '3.8', '3.9', '3.10'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v2