Skip to content

Commit ca282c3

Browse files
committed
Fix CI: Pre-install blis binary for Python 3.9 to avoid compilation
1 parent d9b797a commit ca282c3

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,11 @@ jobs:
3838
restore-keys: |
3939
${{ runner.os }}-spacy-
4040
41+
- name: Pre-install blis binary (Python 3.9 fix)
42+
if: matrix.python-version == '3.9'
43+
run: |
44+
pip install --only-binary=blis blis
45+
4146
- name: Install dependencies
4247
run: |
4348
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)