-
Notifications
You must be signed in to change notification settings - Fork 96
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
🐛 Bug
COMET has an explicit dependency for both transformers = "^4.17"
and huggingface-hub = "^0.16.0"
which will only allow versions up to 0.17.0, but the newest version of transformers (v4.36.1) has its own huggingface-hub
dependency which is >=0.19.3,<1.0
. This creates dependency conflicts for anyone trying to build a package on COMET
and the latest transformers
package. Can we do one of the following:
- Remove the
huggingface-hub
dependency fromCOMET
and just keep thetransformers
dependency given that the former is implicit in the latter; - Use the same style of
huggingface-hub
dependency thattransformers
uses (namely"huggingface-hub>=0.19.3,<1.0"
) to mitigate dependency conflicts; - At very least, update the
huggingface-hub
dependency to be^0.19.3
.
OrianeN, davda54 and ricardorei
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working