File tree Expand file tree Collapse file tree 5 files changed +8
-6
lines changed
Expand file tree Collapse file tree 5 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -13,10 +13,10 @@ jobs:
1313 runs-on : ubuntu-latest
1414 steps :
1515 - uses : actions/checkout@v4
16- - name : Set up Python 3.13
16+ - name : Set up Python 3.14
1717 uses : actions/setup-python@v4
1818 with :
19- python-version : " 3.13 "
19+ python-version : " 3.14 "
2020
2121 - name : Install just
2222 run : |
Original file line number Diff line number Diff line change 1818 strategy :
1919 fail-fast : false
2020 matrix :
21- python-version : ["3.12", "3.13"]
21+ python-version : ["3.12", "3.14"] # we test only the lowest and highest supported versions
2222 runs-on : [ubuntu-latest]
2323 mcp-extra : [true, false]
2424
6464
6565 - name : Coverage comment
6666 uses : MishaKav/pytest-coverage-comment@main
67- if : github.event_name == 'pull_request' && matrix.python-version == '3.13' && matrix.mcp-extra == true
67+ continue-on-error : true
68+ if : github.event_name == 'pull_request' && matrix.python-version == '3.14' && matrix.mcp-extra == true
6869 with :
6970 pytest-xml-coverage-path : ./coverage.xml
7071 junitxml-path : ./pytest.xml
Original file line number Diff line number Diff line change 1- ARG PYTHON_VERSION=3.13 -slim
1+ ARG PYTHON_VERSION=3.14 -slim
22
33# ===== Stage 1: Builder =====
44FROM python:${PYTHON_VERSION} AS builder
Original file line number Diff line number Diff line change 22# VARIABLE DEFINITIONS
33venv := " .venv"
44bin := venv + " /bin"
5- python_version := " python3.13 "
5+ python_version := " python3.14 "
66run := " poetry run"
77target_dirs := " src tests scripts"
88image := " docker.io/elementsinteractive/lgtm-ai"
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ classifiers = [
2828 " Programming Language :: Python :: 3" ,
2929 " Programming Language :: Python :: 3.12" ,
3030 " Programming Language :: Python :: 3.13" ,
31+ " Programming Language :: Python :: 3.14" ,
3132 " Operating System :: OS Independent"
3233]
3334
You can’t perform that action at this time.
0 commit comments