Commit 5d0da54 1 parent 56dcc07 commit 5d0da54 Copy full SHA for 5d0da54
File tree 2 files changed +8
-4
lines changed
2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,10 @@ jobs:
101
101
102
102
- name : Set min. dependencies
103
103
if : ${{ matrix.requires == 'oldest' }}
104
- run : python .actions/assistant.py replace_oldest_ver
104
+ run : |
105
+ python .actions/assistant.py replace_oldest_ver
106
+ pip install "cython<3.0" wheel
107
+ pip install "pyyaml==5.4" --no-build-isolation
105
108
106
109
- name : Adjust PyTorch versions in requirements files
107
110
if : ${{ matrix.requires != 'oldest' }}
@@ -111,7 +114,6 @@ jobs:
111
114
for fpath in `ls requirements/**/*.txt`; do \
112
115
python ./adjust-torch-versions.py $fpath ${{ matrix.pytorch-version }}; \
113
116
done
114
- pip install "pyyaml==5.4" --no-build-isolation
115
117
116
118
- name : pip wheels cache
117
119
uses : actions/cache/restore@v4
Original file line number Diff line number Diff line change @@ -106,7 +106,10 @@ jobs:
106
106
107
107
- name : Set min. dependencies
108
108
if : ${{ matrix.requires == 'oldest' }}
109
- run : python .actions/assistant.py replace_oldest_ver
109
+ run : |
110
+ python .actions/assistant.py replace_oldest_ver
111
+ pip install "cython<3.0" wheel
112
+ pip install "pyyaml==5.4" --no-build-isolation
110
113
111
114
- name : Adjust PyTorch versions in requirements files
112
115
if : ${{ matrix.requires != 'oldest' }}
@@ -117,7 +120,6 @@ jobs:
117
120
python ./adjust-torch-versions.py $fpath ${{ matrix.pytorch-version }}; \
118
121
done
119
122
cat requirements/pytorch/base.txt
120
- pip install "pyyaml==5.4" --no-build-isolation
121
123
122
124
- name : pip wheels cache
123
125
uses : actions/cache/restore@v4
You can’t perform that action at this time.
0 commit comments