chore: relax packaging constraint #1273
Merged
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.
Important
Relax
packagingversion constraint inpyproject.tomlto allow versions up to<26.0.packagingversion constraint inpyproject.tomlfrom<25.0to<26.0.This description was created by
for ea8a3f6. You can customize this summary. It will automatically update as commits are pushed.
Disclaimer: Experimental PR review
Greptile Summary
This PR relaxes the upper version constraint for the
packagingdependency in the project'spyproject.tomlfile. The change modifies the constraint frompackaging = ">=23.2,<25.0"topackaging = ">=23.2,<26.0", allowing users to install packaging version 25.x.The packaging library is used within the langfuse codebase specifically for version parsing and comparison through the
packaging.version.Versionclass (imported inlangfuse/_client/client.py). This is a standard and stable API that langfuse relies on for version-related operations.The packaging library follows calendar-based versioning (YY.N format), where version 25.0 represents the 2025 release. This type of constraint relaxation is common maintenance work that prevents dependency conflicts in downstream projects while maintaining compatibility with langfuse's specific usage patterns. The change preserves the minimum version requirement of 23.2, ensuring that all features langfuse depends on remain available.
Confidence score: 4/5