diff --git a/sci-ml/huggingface_hub/Manifest b/sci-ml/huggingface_hub/Manifest index b6f6b83304b03..64d34799765b6 100644 --- a/sci-ml/huggingface_hub/Manifest +++ b/sci-ml/huggingface_hub/Manifest @@ -1,2 +1,3 @@ DIST huggingface_hub-0.36.0.gh.tar.gz 1052598 BLAKE2B b5c476775ad36daa09ff7d1816f45a0ded7cfd0d31ee83d325214aa1e5cae65f0dbc881183ff1b2265e15d9874773bae34f26ee82fd15c763f197dad13d996e9 SHA512 8fd198ae6d8a778dec756c2a30220f29f60a19b0845210e970ee0689d81b7ab6b349f7136c99db6216c4219224cc8be3f801c070159269ef2a1e28086cf41200 DIST huggingface_hub-1.0.1.gh.tar.gz 979224 BLAKE2B c773e4c97724a0c0a322a871804e788458cde3fc871081ba1adb0a35a0a24428512465f5608d6f28df07d71d269cc90e17bf2ccd066fcd068f9fb09ebfc0ba23 SHA512 2a359cada9993f4074de039660e3d2d9bdd4bcfe45c46f6a46ac8473d68653721bd35b0869768b11b0b9ef65d7a1d3359cd2b1130789bcc80b17b7e0909f048d +DIST huggingface_hub-1.1.5.gh.tar.gz 1000227 BLAKE2B 0270b3b6358faebb612b72a05c9d0c4ccc0183aa1536d3e6ac14d1e0185997d63b17df41a07fbd051447d0e1b9fba347be5ed6870b9e4cc63c8e4885f326f987 SHA512 52fb61650f246178578fbd28802740e912fb13ffe8b89b79f46c5c2cb7222b01b84b77de91c2dcd806a49323c89b012bf5a355b8f9b865179e7dd05a7473a34e diff --git a/sci-ml/huggingface_hub/huggingface_hub-1.1.5.ebuild b/sci-ml/huggingface_hub/huggingface_hub-1.1.5.ebuild new file mode 100644 index 0000000000000..00e0a32ec6596 --- /dev/null +++ b/sci-ml/huggingface_hub/huggingface_hub-1.1.5.ebuild @@ -0,0 +1,79 @@ +# Copyright 2023-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..13} ) +DISTUTILS_SINGLE_IMPL=1 +inherit distutils-r1 + +DESCRIPTION="a client library to interact with the Hugging Face Hub" +HOMEPAGE=" + https://pypi.org/project/huggingface_hub/ +" +SRC_URI="https://github.com/huggingface/${PN}/archive/refs/tags/v${PV}.tar.gz + -> ${P}.gh.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm64" + +RDEPEND=" + $(python_gen_cond_dep ' + dev-python/filelock[${PYTHON_USEDEP}] + dev-python/fsspec[${PYTHON_USEDEP}] + dev-python/httpx[${PYTHON_USEDEP}] + dev-python/packaging[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}] + dev-python/tqdm[${PYTHON_USEDEP}] + dev-python/typer[${PYTHON_USEDEP}] + dev-python/typing-extensions[${PYTHON_USEDEP}] + sci-ml/hf_xet[${PYTHON_USEDEP}] + ') +" + +BDEPEND="test? ( + sci-ml/pytorch[${PYTHON_SINGLE_USEDEP}] + dev-vcs/git-lfs + )" + +distutils_enable_tests pytest + +src_test() { + local EPYTEST_IGNORE=( + contrib + tests/test_cache_layout.py + #tests/test_cache_no_symlinks.py + #tests/test_command_delete_cache.py + tests/test_commit_scheduler.py + tests/test_file_download.py + tests/test_hf_api.py + tests/test_hf_file_system.py + #tests/test_inference_api.py + #tests/test_inference_client.py + tests/test_oauth.py + tests/test_repocard.py + #tests/test_repository.py + tests/test_snapshot_download.py + tests/test_utils_telemetry.py + #tests/test_xet_download.py + tests/test_xet_upload.py + tests/test_utils_cache.py + #tests/test_utils_http.py + tests/test_webhooks_server.py + ) + + local EPYTEST_DESELECT=( + #tests/test_cli.py::TestJobsCommand::test_uv_local_script + tests/test_hub_mixin.py::HubMixinTest::test_push_to_hub + tests/test_hub_mixin_pytorch.py::PytorchHubMixinTest::test_push_to_hub + #tests/test_inference_async_client.py::test_async_generate_timeout_error + #tests/test_inference_providers.py::TestHFInferenceProvider::test_prepare_mapping_info_unknown_task + #tests/test_offline_utils.py::test_offline_with_timeout + #tests/test_utils_pagination.py::TestPagination::test_paginate_hf_api + + ) + + distutils-r1_src_test +}