Skip to content

Commit 3e17886

Browse files
author
Dorin POMIAN
committed
fix: update uv overrides and docker file to use python >=3.11
1 parent d835535 commit 3e17886

3 files changed

Lines changed: 4 additions & 1 deletion

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ RUN curl -LsSf https://astral.sh/uv/install.sh | sh \
2222
&& uv python install 3.11 \
2323
&& uv venv \
2424
&& cd /tmp/build \
25-
&& uv --native-tls pip install --no-cache . \
25+
&& uv --native-tls pip install --no-cache --override /tmp/build/etc/uv-overrides.txt . \
2626
&& uv --native-tls run --script /tmp/build/etc/fetchDefaultModels.py \
2727
&& rm -rf /tmp/build
2828

etc/uv-overrides.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
numba>=0.60.0
2+
llvmlite>=0.43.0

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ dependencies = [
3232
"python-docx>=1.1.2",
3333
"python-dotenv>=1.0.1",
3434
"python-pptx>=1.0.2",
35+
"numba>=0.60.0",
3536
"unstructured>=0.14.8",
3637
"faiss-cpu>=1.11.0",
3738
"langchain_community>=0.3.18",

0 commit comments

Comments
 (0)