chore(deps): pin av<14 to avoid breaking changes (#495)

* chore(deps): Pin `av<14` to avoid breaking changes

Closes #494

* chore(docs): syntax
This commit is contained in:
Jérome Eertmans
2024-12-03 12:56:16 +01:00
committed by GitHub
parent 16d9d32d33
commit ff9aac49d7
3 changed files with 11 additions and 2 deletions

View File

@ -23,6 +23,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Allow multiple slide reverses by going backward [@PeculiarProgrammer](https://github.com/PeculiarProgrammer).
[#488](https://github.com/jeertmans/manim-slides/pull/488)
(unreleased-fixed)=
### Fixed
- Fixed PyAV issue by pinning its version to `<14`.
A future release will contain a fix that supports both `av>=14`
and `av<14`, as their syntax differ, but the former doesn't
provide binary wheels for Python 3.9.
[#494](https://github.com/jeertmans/manim-slides/pull/494)
(v5.1.9)=
## [v5.1.9](https://github.com/jeertmans/manim-slides/compare/v5.1.8...v5.1.9)

View File

@ -17,7 +17,7 @@ classifiers = [
"Topic :: Scientific/Engineering",
]
dependencies = [
"av>=9.0.0",
"av>=9.0.0,<14",
"beautifulsoup4>=4.12.3",
"click>=8.1.3",
"click-default-group>=1.2.2",

2
uv.lock generated
View File

@ -1335,7 +1335,7 @@ dev = [
[package.metadata]
requires-dist = [
{ name = "av", specifier = ">=9.0.0" },
{ name = "av", specifier = ">=9.0.0,<14" },
{ name = "beautifulsoup4", specifier = ">=4.12.3" },
{ name = "click", specifier = ">=8.1.3" },
{ name = "click-default-group", specifier = ">=1.2.2" },