We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bafc22f commit 59bd546Copy full SHA for 59bd546
.github/workflows/check-release.yml
@@ -28,7 +28,7 @@ jobs:
28
29
- name: Install pytorch
30
run: |
31
- if [[ "${{ matrix.torch }}" == "main" ]]; then
+ if [ "${{ matrix.torch }}" = "main" ]; then
32
python -m pip install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cpu
33
else
34
echo "install torch==${{ matrix.torch }}"
@@ -37,7 +37,7 @@ jobs:
37
38
- name: Install transformers ${{ matrix.transformers }}
39
40
- if [[ "${{ matrix.transformers }}" == "main" ]]; then
+ if [ "${{ matrix.transformers }}" = "main" ]; then
41
echo "install transformers from github"
42
git clone https://github.com/huggingface/transformers.git
43
cd transformers
0 commit comments