From b64fcb98172b0aa133f656b0e0e8d49d481e0896 Mon Sep 17 00:00:00 2001 From: cococo <53650488+cococo2000@users.noreply.github.com> Date: Thu, 11 Jan 2024 04:21:25 +0800 Subject: [PATCH] Update vearch Dockerfile: pin vearch version to 3.2.8.3 in Dockerfile (#485) This commit addresses potential compatibility issues by explicitly specifying the version of the vearch library as 3.2.8.3 in the Dockerfile. Without version pinning, the lack of a specified version could lead to interface incompatibilities with future updates. By specifying the version, we ensure a stable and known state of the vearch library, reducing the risk of unexpected errors due to incompatible changes in future releases. --- ann_benchmarks/algorithms/vearch/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ann_benchmarks/algorithms/vearch/Dockerfile b/ann_benchmarks/algorithms/vearch/Dockerfile index febff0f96..5193a5dcb 100644 --- a/ann_benchmarks/algorithms/vearch/Dockerfile +++ b/ann_benchmarks/algorithms/vearch/Dockerfile @@ -1,4 +1,4 @@ FROM ann-benchmarks -RUN pip3 install vearch +RUN pip3 install vearch==3.2.8.3 RUN python3 -c 'import vearch'