File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 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 : |
Original file line number Diff line number Diff line change 4646from 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
You can’t perform that action at this time.
0 commit comments