Skip to content

Commit 55e903e

Browse files
authored
ci: Bump Python version for linting (#4897)
### Description Python 3.14 is out, let's use it for linting. #### Issues Ref #4895 #### Reminders - Please add tests to validate your changes, and lint your code using `tox -e linters`. - Add GH Issue ID _&_ Linear ID (if applicable) - PR title should use [conventional commit](https://develop.sentry.dev/engineering-practices/commit-messages/#type) style (`feat:`, `fix:`, `ref:`, `meta:`) - For external contributors: [CONTRIBUTING.md](https://github.com/getsentry/sentry-python/blob/master/CONTRIBUTING.md), [Sentry SDK development docs](https://develop.sentry.dev/sdk/), [Discord community](https://discord.gg/Ww9hbqr)
1 parent f32e391 commit 55e903e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- uses: actions/[email protected]
2828
- uses: actions/setup-python@v6
2929
with:
30-
python-version: 3.12
30+
python-version: 3.14
3131

3232
- run: |
3333
pip install tox

scripts/populate_tox/tox.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ basepython =
181181
# Python version is pinned here for consistency across environments.
182182
# Tools like ruff and mypy have options that pin the target Python
183183
# version (configured in pyproject.toml), ensuring consistent behavior.
184-
linters: python3.12
184+
linters: python3.14
185185
186186
commands =
187187
{py3.7,py3.8}-boto3: pip install urllib3<2.0.0

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -812,7 +812,7 @@ basepython =
812812
# Python version is pinned here for consistency across environments.
813813
# Tools like ruff and mypy have options that pin the target Python
814814
# version (configured in pyproject.toml), ensuring consistent behavior.
815-
linters: python3.12
815+
linters: python3.14
816816

817817
commands =
818818
{py3.7,py3.8}-boto3: pip install urllib3<2.0.0

0 commit comments

Comments
 (0)