File tree Expand file tree Collapse file tree 4 files changed +10
-5
lines changed Expand file tree Collapse file tree 4 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ WORKDIR /app
1313RUN apt-get update && apt-get install -y --no-install-recommends \
1414 build-essential \
1515 python3-dev \
16- python3-blis \
1716 gcc \
1817 g++ \
1918 && rm -rf /var/lib/apt/lists/*
Original file line number Diff line number Diff line change @@ -21,4 +21,6 @@ ipython
2121ipykernel
2222peft
2323bitsandbytes
24- gradio
24+ gradio
25+ # Constrain spacy version to avoid blis build issues on ARM64
26+ spacy < 3.8.0
Original file line number Diff line number Diff line change @@ -16,4 +16,6 @@ nbformat
1616nbconvert
1717ipython
1818ipykernel
19- gradio
19+ gradio
20+ # Constrain spacy version to avoid blis build issues on ARM64
21+ spacy<3.8.0
Original file line number Diff line number Diff line change 22
33setup (
44 name = "optillm" ,
5- version = "0.0.27 " ,
5+ version = "0.0.28 " ,
66 packages = find_packages (),
77 py_modules = ['optillm' ],
88 package_data = {
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' : [
You can’t perform that action at this time.
0 commit comments