@@ -52,14 +52,14 @@ jobs:
52
52
- { os: "macOS-13", python-version: "3.10", pytorch-version: "2.0.1" }
53
53
# using the ARM based M1 machine
54
54
- { os: "macOS-14", python-version: "3.10", pytorch-version: "2.0.1" }
55
- - { os: "macOS-14", python-version: "3.12", pytorch-version: "2.5 .0" }
55
+ - { os: "macOS-14", python-version: "3.12", pytorch-version: "2.6 .0" }
56
56
# some windows
57
57
- { os: "windows-2022", python-version: "3.10", pytorch-version: "2.0.1" }
58
- - { os: "windows-2022", python-version: "3.12", pytorch-version: "2.5 .0" }
58
+ - { os: "windows-2022", python-version: "3.12", pytorch-version: "2.6 .0" }
59
59
# Future released version
60
- - { os: "ubuntu-22.04", python-version: "3.11", pytorch-version: "2.6 .0" }
61
- - { os: "macOS-14", python-version: "3.11", pytorch-version: "2.6 .0" }
62
- - { os: "windows-2022", python-version: "3.11", pytorch-version: "2.6 .0" }
60
+ # - { os: "ubuntu-22.04", python-version: "3.11", pytorch-version: "2.7 .0" }
61
+ # - { os: "macOS-14", python-version: "3.11", pytorch-version: "2.7 .0" }
62
+ # - { os: "windows-2022", python-version: "3.11", pytorch-version: "2.7 .0" }
63
63
env :
64
64
FREEZE_REQUIREMENTS : ${{ ! (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/release/')) }}
65
65
TOKENIZERS_PARALLELISM : false
@@ -104,7 +104,7 @@ jobs:
104
104
cache-references : true
105
105
106
106
- name : Switch to PT test URL
107
- if : ${{ matrix.pytorch-version == '2.6 .0' }}
107
+ if : ${{ matrix.pytorch-version == '2.7 .0' }}
108
108
run : echo 'PIP_EXTRA_INDEX_URL=--extra-index-url https://download.pytorch.org/whl/test/cpu/' >> $GITHUB_ENV
109
109
- name : Install pkg
110
110
timeout-minutes : 25
@@ -131,6 +131,8 @@ jobs:
131
131
done
132
132
pip install --requirement requirements/_devel.txt -U \
133
133
$PIP_EXTRA_INDEX_URL --find-links="$PYPI_CACHE_DIR"
134
+ pip install --requirement requirements/clustering.txt -U \
135
+ $PIP_EXTRA_INDEX_URL --find-links="$PYPI_CACHE_DIR" || true # separate install to avoid conflicts and ignore failures
134
136
pip list
135
137
136
138
- name : set special vars for PR
0 commit comments