Remove pyav pin to allow python 3.11 to be used (#35823)

* Remove pyav pin to allow python 3.11 to be used

* Run make fixup

---------

Co-authored-by: Louis Groux <louis.cal.groux@gmail.com>
This commit is contained in:
CalOmnie 2025-01-21 21:16:18 +01:00 committed by GitHub
parent 90b46e983f
commit f4f33a20a2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -97,7 +97,7 @@ if stale_egg_info.exists():
_deps = [
"Pillow>=10.0.1,<=15.0",
"accelerate>=0.26.0",
"av==9.2.0", # Latest version of PyAV (10.0.0) has issues with audio stream.
"av",
"beautifulsoup4",
"blobfile",
"codecarbon>=2.8.1",

View file

@ -4,7 +4,7 @@
deps = {
"Pillow": "Pillow>=10.0.1,<=15.0",
"accelerate": "accelerate>=0.26.0",
"av": "av==9.2.0",
"av": "av",
"beautifulsoup4": "beautifulsoup4",
"blobfile": "blobfile",
"codecarbon": "codecarbon>=2.8.1",