Skip to content

Commit 0d89313

Browse files
committed
Set python min version at 3.12
1 parent 23f0ecb commit 0d89313

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

{{cookiecutter.project_slug}}/pyproject.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@ classifiers = [
1818
"Operating System :: OS Independent",
1919
"Programming Language :: Python",
2020
"Programming Language :: Python :: 3",
21-
"Programming Language :: Python :: 3.10",
22-
"Programming Language :: Python :: 3.11",
23-
"Programming Language :: Python :: 3.12",
2421
"Topic :: Software Development :: Libraries :: Python Modules",
2522
"Typing :: Typed",
2623
]
@@ -30,7 +27,7 @@ packages = [
3027
]
3128

3229
[tool.poetry.dependencies]
33-
python = ">=3.10, <4.0"
30+
python = ">=3.12, <4.0"
3431
click = "*"
3532

3633
[tool.poetry.group.dev.dependencies]
@@ -57,7 +54,7 @@ build-backend = "poetry.core.masonry.api"
5754
my-cli = "{{ cookiecutter.package_name }}.cli:main"
5855

5956
[tool.ruff]
60-
target-version = "py310" # The lowest supported version
57+
target-version = "py312" # The lowest supported version
6158

6259
[tool.ruff.lint]
6360
# By default, enable all the lint rules.

0 commit comments

Comments
 (0)