Skip to content

Commit d40c9b0

Browse files
authored
feat: Restrict Python version to <3.14 in pyproject.toml (#2954)
Restrict Python version to <3.14 in pyproject.toml Updated the 'requires-python' field to limit supported Python versions to >=3.9 and <3.14, ensuring compatibility with the package.
1 parent ca022fc commit d40c9b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ authors = [
1212
]
1313
description = "A Python wrapper for the Discord API"
1414
readme = {content-type = "text/x-rst", file = "README.rst"}
15-
requires-python = ">=3.9"
15+
requires-python = ">=3.9, <3.14"
1616
license = "MIT"
1717
license-files = ["LICENSE"]
1818
classifiers = [

0 commit comments

Comments
 (0)