Skip to content

Commit feb47f0

Browse files
committed
fix build on arm64
1 parent 672c041 commit feb47f0

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

requirements.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,6 @@ ipython
2121
ipykernel
2222
peft
2323
bitsandbytes
24-
gradio
24+
gradio
25+
# Constrain spacy version to avoid blis build issues on ARM64
26+
spacy<3.8.0

requirements_proxy_only.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,6 @@ nbformat
1616
nbconvert
1717
ipython
1818
ipykernel
19-
gradio
19+
gradio
20+
# Constrain spacy version to avoid blis build issues on ARM64
21+
spacy<3.8.0

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@
3333
"ipykernel",
3434
"peft",
3535
"bitsandbytes",
36-
"gradio"
36+
"gradio",
37+
# Constrain spacy version to avoid blis build issues on ARM64
38+
"spacy<3.8.0",
3739
],
3840
entry_points={
3941
'console_scripts': [

0 commit comments

Comments
 (0)