Update pyproject and uv lock to fix missing typing_extensions dependency
#47
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.
Fix missing
typing_extensionsdependencyThis PR updates
pyproject.tomlanduv.lockto explicitly includetyping_extensionsas a dependency.Changes
typing_extensionsto project dependencies inpyproject.tomluv.lockto reflect the new dependencyMotivation
The
typing_extensionspackage was being used in the codebase but not explicitly declared as a dependency, which could lead to import errors in certain environments where it's not already installed as a transitive dependency.This ensures the package will work reliably across all Python versions and installation scenarios.