Skip to content

Commit d67d05d

Browse files
authored
chore(deps): restrict to Python 3.13 (#4452)
The README.md states that this utility is only compatible with Python v3.10 thru v3.13, however there was no upper bound specified in the pyproject.toml definition. It is currently therefore possible to install cfn-lint using Python 3.14 but it will throw various errors and / or warnings when being executed. This change adds an upper bound so that installation of cfn-lint will fail on versions of Python that are unsupported.
1 parent 0806f84 commit d67d05d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ optional-dependencies.full = { file = ["requirements/optional-graph.txt","requir
1919
[project]
2020
name = "cfn-lint"
2121
description = "Checks CloudFormation templates for practices and behaviour that could potentially be improved"
22-
requires-python = ">=3.10"
22+
requires-python = ">=3.10,<3.14"
2323
license = "MIT-0"
2424
keywords = ["aws", "cloudformation", "lint"]
2525
authors = [

0 commit comments

Comments
 (0)