mirror of
https://github.com/saymrwulf/transformers.git
synced 2026-05-14 20:58:08 +00:00
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:
parent
90b46e983f
commit
f4f33a20a2
2 changed files with 2 additions and 2 deletions
2
setup.py
2
setup.py
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Reference in a new issue