fix: bump dep minimums to resolve stale zipp transitive#10
Merged
ryanmcmillan merged 1 commit intomainfrom Mar 21, 2026
Merged
Conversation
apscheduler 3.10.x and pydantic 2.5.x pull importlib-metadata which depends on zipp<3.19.1. Bumping minimums so Snyk resolves versions that use stdlib importlib.metadata instead.
Greptile SummaryThis PR raises the minimum version floors for
Confidence Score: 4/5
Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[requirements.txt] --> B[apscheduler >= 3.11.0]
A --> C[pydantic >= 2.5.3]
A --> D[zipp >= 3.19.1\nexplicit pin]
subgraph OLD["Before (apscheduler 3.10.x / pydantic 2.0.x)"]
B1[apscheduler 3.10.x] --> E1[pkg_resources / importlib_metadata backport]
C1[pydantic 2.0.x–2.4.x] --> F1["importlib_metadata backport\n(Python < 3.10)"]
E1 --> G1["zipp @ 3.15.0 ⚠️ Snyk CVE"]
F1 --> G1
end
subgraph NEW["After (apscheduler 3.11.0 / pydantic 2.5.3)"]
B2[apscheduler 3.11.0] --> E2["stdlib importlib.metadata\n(no backport needed)"]
C2[pydantic 2.5.3] --> F2["stdlib importlib.metadata\n(Python 3.9+)"]
E2 --> G2["No zipp transitive ✅"]
F2 --> G2
end
Last reviewed commit: "fix: bump apschedule..." |
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.
Summary
Snyk still flags zipp@3.15.0 because apscheduler and pydantic resolve to old versions that pull importlib-metadata → zipp<3.19.1.
Bumps:
apscheduler>=3.10.0→>=3.11.0pydantic>=2.0.0→>=2.5.3Modern versions of these packages on Python 3.9+ use stdlib
importlib.metadataand don't need thezipptransitive at all.