-
Notifications
You must be signed in to change notification settings - Fork 826
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Let's allow hf_hub < 1.0 #1344
Let's allow hf_hub < 1.0 #1344
Conversation
The documentation is not available anymore as the PR was closed or merged. |
@ArthurZucker when will this be merged? It's painful having to upgrade and downgrade back and forth to train and then upload models |
bindings/python/pyproject.toml
Outdated
@@ -26,7 +26,7 @@ dynamic = [ | |||
'license', | |||
'readme', | |||
] | |||
dependencies = ["huggingface_hub>=0.16.4,<0.17"] | |||
dependencies = ["huggingface_hub>=0.16.4,<1.0"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, we need to allow for breaking changes in huggingface_hub meaning we can do >=0.17,<0.18
instead.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
An attempt to be more permissive with HF hub version