fix: update simpleeval and click to patch known vulnerabilities - #1180
Open
IIIllllIlIlllII wants to merge 1 commit into
Open
fix: update simpleeval and click to patch known vulnerabilities#1180IIIllllIlIlllII wants to merge 1 commit into
IIIllllIlIlllII wants to merge 1 commit into
Conversation
- simpleeval ~=0.9.12 -> ~=1.0.5 (PYSEC-2026-132) - click ~=8.1.6 -> ~=8.3.3 (PYSEC-2026-2132) Verified API compatibility manually: - simpleeval: simple_eval() with named args works as before - click: imports and version check pass
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates Python dependency constraints in the base requirements set to address two pip-audit-reported vulnerabilities by bumping simpleeval and click to newer compatible versions.
Changes:
- Bump
simpleevalfrom~=0.9.12to~=1.0.5. - Bump
clickfrom~=8.1.6to~=8.3.3.
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
| omegaconf~=2.3 | ||
| # omegaconf arithmetic resolver | ||
| simpleeval~=0.9.12 | ||
| simpleeval~=1.0.5 |
Author
There was a problem hiding this comment.
pip-audit flagged two dependencies with known CVEs:
simpleeval ~=0.9.12→~=1.0.5(PYSEC-2026-132)click ~=8.1.6→~=8.3.3(PYSEC-2026-2132)
Verified API compatibility:
simpleeval: major version bump (0.9.x → 1.0.x), but the API used by Savant (simple_eval()withnamesparameter insavant/config/calc_resolver.py) is unchanged. Tested manually and confirmed compatible.click: minor version bump (8.1.x → 8.3.x), imports and CLI scripts unaffected.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
pip-auditflagged two dependencies with known CVEs:simpleeval ~=0.9.12→~=1.0.5(PYSEC-2026-132)click ~=8.1.6→~=8.3.3(PYSEC-2026-2132)Verified API compatibility:
simpleeval:simple_eval()with named args works as before (used insavant/config/calc_resolver.py)click: imports and CLI scripts unaffectedNo breaking changes expected — both are minor/patch version bumps.