From 0422fce6202912152c00f925be446c529e757674 Mon Sep 17 00:00:00 2001 From: xmichaelmason <142694049+xmichaelmason@users.noreply.github.com> Date: Sat, 3 Feb 2024 10:10:45 -0800 Subject: [PATCH 1/2] Update repository.md per the docs here: https://huggingface.co/docs/huggingface_hub/v0.20.3/en/package_reference/hf_api#huggingface_hub.HfApi.create_branch create_branch() no longer accepts a "tag" parameter. Produced error: TypeError Traceback (most recent call last) Cell In[21], line 1 ----> 1 create_branch( 2 "mylesdyson/speecht5-tts-demo", 3 repo_type="dataset", 4 revision="v0.1-release", 5 tag="v0.1.1", 6 tag_message="Bump release version.", 7 token=HF_TOKEN 8 ) File ~/.local/lib/python3.10/site-packages/huggingface_hub/utils/_validators.py:118, in validate_hf_hub_args.._inner_fn(*args, **kwargs) 115 if check_use_auth_token: 116 kwargs = smoothly_deprecate_use_auth_token(fn_name=fn.__name__, has_token=has_token, kwargs=kwargs) --> 118 return fn(*args, **kwargs) TypeError: HfApi.create_branch() got an unexpected keyword argument 'tag' --- docs/source/en/guides/repository.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/en/guides/repository.md b/docs/source/en/guides/repository.md index e8da4e2be9..a302569c5c 100644 --- a/docs/source/en/guides/repository.md +++ b/docs/source/en/guides/repository.md @@ -108,7 +108,7 @@ You can create new branch and tags using [`create_branch`] and [`create_tag`]: >>> create_branch("Matthijs/speecht5-tts-demo", repo_type="space", branch="handle-dog-speaker") # Create a tag on a Dataset repo from `v0.1-release` branch ->>> create_branch("bigcode/the-stack", repo_type="dataset", revision="v0.1-release", tag="v0.1.1", tag_message="Bump release version.") +>>> create_branch("bigcode/the-stack", repo_type="dataset", revision="v0.1-release", tag_message="Bump release version.") ``` You can use the [`delete_branch`] and [`delete_tag`] functions in the same way to delete a branch or a tag. From 64acf049c88734b18bac5c527627dfb5433c075d Mon Sep 17 00:00:00 2001 From: Lucain Date: Tue, 6 Feb 2024 17:19:30 +0100 Subject: [PATCH 2/2] Update docs/source/en/guides/repository.md --- docs/source/en/guides/repository.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/en/guides/repository.md b/docs/source/en/guides/repository.md index a302569c5c..a9c9d3e9be 100644 --- a/docs/source/en/guides/repository.md +++ b/docs/source/en/guides/repository.md @@ -108,7 +108,7 @@ You can create new branch and tags using [`create_branch`] and [`create_tag`]: >>> create_branch("Matthijs/speecht5-tts-demo", repo_type="space", branch="handle-dog-speaker") # Create a tag on a Dataset repo from `v0.1-release` branch ->>> create_branch("bigcode/the-stack", repo_type="dataset", revision="v0.1-release", tag_message="Bump release version.") +>>> create_tag("bigcode/the-stack", repo_type="dataset", revision="v0.1-release", tag="v0.1.1", tag_message="Bump release version.") ``` You can use the [`delete_branch`] and [`delete_tag`] functions in the same way to delete a branch or a tag.