Skip to content

Commit 49b30e9

Browse files
authored
cpython
1 parent 7c34be8 commit 49b30e9

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/ci-tests-fabric.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,9 @@ jobs:
101101

102102
- name: Set min. dependencies
103103
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.0" wheel
105107
106108
- name: Adjust PyTorch versions in requirements files
107109
if: ${{ matrix.requires != 'oldest' }}

.github/workflows/ci-tests-pytorch.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,9 @@ jobs:
106106

107107
- name: Set min. dependencies
108108
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.0" wheel
110112
111113
- name: Adjust PyTorch versions in requirements files
112114
if: ${{ matrix.requires != 'oldest' }}

0 commit comments

Comments
 (0)