Skip to content

Commit

Permalink
Fix 2609 - Import packaging by default (#2610)
Browse files Browse the repository at this point in the history
* Fix 2609 - Import packaging by default

* pin gradio to high version in test

* test
  • Loading branch information
Wauplin authored Oct 16, 2024
1 parent 9bb6bd6 commit c79e14b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def get_version() -> str:
"urllib3<2.0", # VCR.py broken with urllib3 2.0 (see https://urllib3.readthedocs.io/en/stable/v2-migration-guide.html)
"soundfile",
"Pillow",
"gradio", # to test webhooks
"gradio>=4.0.0", # to test webhooks # pin to avoid issue on Python3.12
"numpy", # for embeddings
"fastapi", # To build the documentation
]
Expand Down
3 changes: 2 additions & 1 deletion src/huggingface_hub/hub_mixin.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
Union,
)

import packaging.version

from . import constants
from .errors import EntryNotFoundError, HfHubHTTPError
from .file_download import hf_hub_download
Expand All @@ -41,7 +43,6 @@
import torch # type: ignore

if is_safetensors_available():
import packaging.version
import safetensors
from safetensors.torch import load_model as load_model_as_safetensor
from safetensors.torch import save_model as save_model_as_safetensor
Expand Down

0 comments on commit c79e14b

Please sign in to comment.