Skip to content

Commit 885ca83

Browse files
authored
Merge pull request #1557 from swirlai/ds-3894-comm
unpin spacy in requirements; update Dockerfile for that change
2 parents 35b80cc + 4a3fe83 commit 885ca83

File tree

3 files changed

+21
-8
lines changed

3 files changed

+21
-8
lines changed

Dockerfile

+17-4
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,25 @@ COPY ./db.sqlite3.dist /app/db.sqlite3
1919
COPY ./.env.docker /app/.env
2020
COPY ./download-nltk-resources.sh /app/
2121

22+
# Near the top or just before WORKDIR
23+
ENV BLIS_ARCH=generic
24+
2225
WORKDIR /app
2326

24-
# Optimize pip and Python installations
25-
RUN pip install --no-cache-dir --upgrade pip \
26-
&& pip install --no-cache-dir -r requirements.txt \
27-
&& pip install --no-cache-dir --upgrade grpcio
27+
# Optimize pip and Python installations; install spaCy version matching requirements.txt
28+
RUN pip install --no-cache-dir --upgrade pip setuptools wheel && \
29+
SPACY_VERSION=$(grep -E '^[sS]pacy(==|>=)' requirements.txt | head -1 | sed -E 's/^[sS]pacy(==|>=)//') && \
30+
if [ -n "$SPACY_VERSION" ]; then \
31+
echo "Found spaCy version $SPACY_VERSION in requirements.txt"; \
32+
pip install --no-cache-dir --only-binary :all: spacy==$SPACY_VERSION || \
33+
pip install --no-cache-dir spacy==$SPACY_VERSION; \
34+
else \
35+
echo "No pinned spaCy version found in requirements.txt, installing latest spaCy wheel"; \
36+
pip install --no-cache-dir --only-binary :all: spacy || \
37+
pip install --no-cache-dir spacy; \
38+
fi && \
39+
pip install --no-cache-dir -r requirements.txt && \
40+
pip install --no-cache-dir --upgrade grpcio
2841

2942
# Swirl install requirements
3043
RUN python -m spacy download en_core_web_lg && \

requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ requests
22
Django>=5.1
33
django_restframework
44
django-celery-beat
5-
Celery>=5.5.0rc4
5+
Celery>=5.5.0rc5
66
pika
77
elasticsearch
88
jsonpath-ng
99
pyyaml
1010
whitenoise
1111
daphne
1212
textblob
13-
spacy==3.7.5
13+
spacy
1414
natsort
1515
django-environ
1616
statistics

swirl/banner.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ class bcolors:
1010
ENDC = '\033[0m'
1111
BOLD = '\033[1m'
1212

13-
SWIRL_VERSION = '4.1-DEV'
13+
SWIRL_VERSION = '4.2-DEV'
1414

15-
SWIRL_BANNER_TEXT = "__S_W_I_R_L__A_I__4_._1-DEV__________________________________________________________"
15+
SWIRL_BANNER_TEXT = "__S_W_I_R_L__A_I__4_._2-DEV__________________________________________________________"
1616
SWIRL_BANNER = f'{bcolors.BOLD}{SWIRL_BANNER_TEXT}{bcolors.ENDC}'
1717

1818
#############################################

0 commit comments

Comments
 (0)