Skip to content

Commit

Permalink
Upgrade Python versions (dropping 3.8, 3.9)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelosthege committed Apr 22, 2024
1 parent b4bf7bc commit 479ca7d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 479ca7d

Please sign in to comment.