Skip to content

Commit 888fb5c

Browse files
committed
change minimum version to 3.13
1 parent c1cc4a1 commit 888fb5c

File tree

5 files changed

+4
-166
lines changed

5 files changed

+4
-166
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,8 @@ jobs:
1212
strategy:
1313
matrix:
1414
python-version:
15-
- "3.10"
16-
- "3.11"
17-
- "3.12"
1815
- "3.13"
16+
- "3.14"
1917
steps:
2018
- uses: actions/checkout@v6
2119
- name: Install uv and set the python version

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Includes:
88
- [ruff](https://docs.astral.sh/ruff/)
99

1010
## Requirements
11-
- Python 3.10+
11+
- Python 3.13+
1212
- [uv](https://docs.astral.sh/uv/)
1313

1414
## Using

pyproject.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,9 @@ version = "0.0.0"
88
description = "Python boilerplate"
99
readme = "README.md"
1010
license = { file = "LICENSE" }
11-
requires-python = ">=3.10"
11+
requires-python = ">=3.13"
1212
classifiers = [
1313
"Programming Language :: Python :: 3 :: Only",
14-
"Programming Language :: Python :: 3.10",
15-
"Programming Language :: Python :: 3.11",
16-
"Programming Language :: Python :: 3.12",
1714
"Programming Language :: Python :: 3.13",
1815
"Programming Language :: Python :: 3.14",
1916
]

requirements.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ pre-commit==4.5.0
2727
pyyaml==6.0.2
2828
# via pre-commit
2929
ruff==0.14.8
30-
tomli==2.2.1 ; python_full_version < '3.11'
31-
# via mypy
3230
typing-extensions==4.12.2
3331
# via mypy
3432
virtualenv==20.28.1

0 commit comments

Comments
 (0)