Update ass dependency to allow v1.x - #74
Conversation
There was a problem hiding this comment.
Pull Request Overview
Updates the ASS library dependency constraint to allow version 1.x releases while maintaining compatibility.
- Updates dependency constraint from
< 1to>=1.0.0, < 2
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
| requires-python = ">=3.9" | ||
| dependencies = [ | ||
| "ass < 1", | ||
| "ass>=1.0.0, < 2", |
There was a problem hiding this comment.
[nitpick] The version constraint should include a space after the comma for consistency with the formatting used in other dependencies in this file (e.g., line 14: fontTools>=4.55.0, < 5).
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #74 +/- ##
=======================================
Coverage 94.57% 94.57%
=======================================
Files 35 35
Lines 1640 1640
=======================================
Hits 1551 1551
Misses 89 89 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Updates the
assdependency constraint from<1to>=1.0.0, <2.The ASS v1.0.0 release contained no code changes, only dropped support for Python <3.8. Tests pass as expected.