fix(python): add proper date for stellar exclusion
What changed, and why it matters
This commit fixes a simple typo in a Python project configuration file. The date for an exception allowing a newer Stellar SDK package had an extra '1' in the day ('2026-07-051'), which is not a valid date. The change corrects it to '2026-07-05'. There is no security issue here—just a formatting fix that lets the build dependency rule work as intended.
No security action needed. Treat as a normal build/configuration fix.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff modifies python/pyproject.toml, changing the exclude-newer-package timestamp for stellar-sdk from an invalid ISO 8601 date ‘2026-07-051T00:00:00Z’ to the intended valid date ‘2026-07-05T00:00:00Z’. This is a one-character typo correction. The invalid date would likely cause the build/dependency tool to fail parsing or reject the configuration, so the fix restores intended behavior. No code logic, cryptography, or security boundary is affected.
Changed components
python/pyproject.tomlInspect captured patch +1 / −1
diff --git a/python/pyproject.toml b/python/pyproject.toml
index 79e6ccf4..e1a9e6de 100644
--- a/python/pyproject.toml
+++ b/python/pyproject.toml
@@ -78,7 +78,7 @@ exclude-newer = "30 days"
# Exempt stellar-sdk from the 30-day rule so the freshly released 15.0.0
# final (needed for Protocol 27 support) can be resolved.
# TODO: remove after 2026-08-04
-exclude-newer-package = { stellar-sdk = "2026-07-051T00:00:00Z" }
+exclude-newer-package = { stellar-sdk = "2026-07-05T00:00:00Z" }
[tool.flit.module]
name = "trezorlib"
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.