Skip to content

Commit a7e6eea

Browse files
committed
Release: v0.29.0.rc1
1 parent 0bd6b4a commit a7e6eea

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

.github/workflows/python-prerelease.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,15 @@ jobs:
3232
git config user.name "Hugging Face Bot (RC Testing)"
3333
git config user.email "[email protected]"
3434
35+
- name: Wait for prerelease to be out on PyPI
36+
run: |
37+
VERSION=${{ steps.get-version.outputs.VERSION }}
38+
echo "Waiting for huggingface-hub==${VERSION} to be available on PyPI"
39+
while ! pip install huggingface-hub==${VERSION}; do
40+
echo "huggingface-hub==${VERSION} not available yet, retrying in 15s"
41+
sleep 15
42+
done
43+
3544
- name: Create test branch and update dependencies
3645
id: create-pr
3746
run: |

src/huggingface_hub/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
from typing import TYPE_CHECKING
4747

4848

49-
__version__ = "0.29.0.rc0"
49+
__version__ = "0.29.0.rc1"
5050

5151
# Alphabetical order of definitions is ensured in tests
5252
# WARNING: any comment added in this dictionary definition will be lost when

0 commit comments

Comments
 (0)