Skip to content

Commit 3ae2756

Browse files
Fix errors in pyproject.toml sections for ruff.
Also add entry in ChangeLog mentioning that older Python versions are no longer supported.
1 parent 4dbd495 commit 3ae2756

2 files changed

Lines changed: 12 additions & 2 deletions

File tree

ChangeLog.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
wolfCrypt-py Release next (TBD)
2+
==========================================
3+
4+
* Drop support for end-of-life Python versions (<= 3.9)
5+
6+
17
wolfCrypt-py Release 5.8.4 (Jan 7, 2026)
28
==========================================
39

pyproject.toml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ classifiers = [
1313
"Operating System :: OS Independent",
1414
"Programming Language :: Python :: 3",
1515
"Programming Language :: Python :: 3.10",
16+
"Programming Language :: Python :: 3.11",
17+
"Programming Language :: Python :: 3.12",
18+
"Programming Language :: Python :: 3.13",
19+
"Programming Language :: Python :: 3.14",
1620
"Topic :: Security",
1721
"Topic :: Security :: Cryptography",
1822
"Topic :: Software Development"
@@ -91,7 +95,7 @@ indent-width = 4
9195
# Assume Python 3.10
9296
target-version = "py310"
9397

94-
[lint]
98+
[tool.ruff.lint]
9599
# Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`) codes by default.
96100
# Unlike Flake8, Ruff doesn't enable pycodestyle warnings (`W`) or
97101
# McCabe complexity (`C901`) by default.
@@ -105,7 +109,7 @@ unfixable = []
105109
# Allow unused variables when underscore-prefixed.
106110
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
107111

108-
[format]
112+
[tool.ruff.format]
109113
# Like Black, use double quotes for strings.
110114
quote-style = "double"
111115

0 commit comments

Comments
 (0)