From 479ca7d461c9d86c79fcefa66ccc4d90080c13f4 Mon Sep 17 00:00:00 2001 From: Michael Osthege Date: Tue, 23 Apr 2024 00:54:36 +0200 Subject: [PATCH] Upgrade Python versions (dropping 3.8, 3.9) --- .github/workflows/pipeline.yml | 4 ++-- .github/workflows/release.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 3244636..b6ec5e8 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10"] + python-version: ["3.10", "3.11", "3.12"] services: clickhouse: image: yandex/clickhouse-server @@ -36,7 +36,7 @@ jobs: pytest -v --cov=./mcbackend --cov-report xml --cov-report term-missing mcbackend/ - name: Upload coverage uses: codecov/codecov-action@v4 - if: matrix.python-version == 3.9 + if: matrix.python-version == 3.11 with: file: ./coverage.xml fail_ci_if_error: false diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f14de21..eadf85b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,7 +23,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5.1.0 with: - python-version: 3.9 + python-version: 3.11 - name: Install dependencies run: | pip install -r requirements.txt