Skip to content

Commit

Permalink
Remove pyav pin to allow python 3.11 to be used (#35823)
Browse files Browse the repository at this point in the history
* Remove pyav pin to allow python 3.11 to be used

* Run make fixup

---------

Co-authored-by: Louis Groux <[email protected]>
  • Loading branch information
CalOmnie and CalOmnie authored Jan 21, 2025
1 parent 90b46e9 commit f4f33a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
_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",
Expand Down
2 changes: 1 addition & 1 deletion src/transformers/dependency_versions_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit f4f33a2

Please sign in to comment.