Skip to content

Commit 479ca7d

Browse files
Upgrade Python versions (dropping 3.8, 3.9)
1 parent b4bf7bc commit 479ca7d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/pipeline.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: ["3.8", "3.9", "3.10"]
10+
python-version: ["3.10", "3.11", "3.12"]
1111
services:
1212
clickhouse:
1313
image: yandex/clickhouse-server
@@ -36,7 +36,7 @@ jobs:
3636
pytest -v --cov=./mcbackend --cov-report xml --cov-report term-missing mcbackend/
3737
- name: Upload coverage
3838
uses: codecov/codecov-action@v4
39-
if: matrix.python-version == 3.9
39+
if: matrix.python-version == 3.11
4040
with:
4141
file: ./coverage.xml
4242
fail_ci_if_error: false

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Set up Python
2424
uses: actions/setup-python@v5.1.0
2525
with:
26-
python-version: 3.9
26+
python-version: 3.11
2727
- name: Install dependencies
2828
run: |
2929
pip install -r requirements.txt

0 commit comments

Comments
 (0)