Skip to content

Commit 3dfcda3

Browse files
authored
Merge pull request #140 from codelion/codelion-patch-1
Update Dockerfile.proxy_only
2 parents 4e62d2e + 757b04d commit 3dfcda3

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

Dockerfile.proxy_only

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ WORKDIR /app
1313
RUN 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/*

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: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="optillm",
5-
version="0.0.27",
5+
version="0.0.28",
66
packages=find_packages(),
77
py_modules=['optillm'],
88
package_data={
@@ -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)