diff --git a/.github/workflows/mac.yaml b/.github/workflows/mac.yaml index ccb21ebaab5af..2873cf99b54d1 100644 --- a/.github/workflows/mac.yaml +++ b/.github/workflows/mac.yaml @@ -82,7 +82,7 @@ jobs: fi ls -alh /var/tmp/ccache brew install libomp ninja openblas ccache pkg-config - pip3 install conan==1.61.0 + pip3 install conan==2.5.0 if [[ ! -d "/usr/local/opt/llvm" ]]; then ln -s /usr/local/opt/llvm@14 /usr/local/opt/llvm fi diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 99bfc0f1546ae..85526d01ebcb9 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -164,7 +164,7 @@ Milvus uses Conan to manage third-party dependencies for c++. Install Conan ```shell -pip install conan==1.61.0 +pip install conan==2.5.0 ``` Note: Conan version 2.x is not currently supported, please use version 1.61. @@ -239,7 +239,7 @@ sudo apt install -y clang-format clang-tidy ninja-build gcc g++ curl zip unzip t # Verify python3 version, need python3 version > 3.8 and version <= 3.11 python3 --version # pip install conan 1.61.0 -pip3 install conan==1.61.0 +pip3 install conan==2.5.0 ``` #### Install GO 1.80 diff --git a/scripts/install_deps.sh b/scripts/install_deps.sh index 067b617ef2e64..01f76a10b50df 100755 --- a/scripts/install_deps.sh +++ b/scripts/install_deps.sh @@ -24,7 +24,7 @@ function install_linux_deps() { clang-format-12 clang-tidy-12 lcov libtool m4 autoconf automake python3 python3-pip \ pkg-config uuid-dev libaio-dev libopenblas-dev libgoogle-perftools-dev - sudo pip3 install conan==1.61.0 + sudo pip3 install conan==2.5.0 elif [[ -x "$(command -v yum)" ]]; then # for CentOS devtoolset-11 sudo yum install -y epel-release centos-release-scl-rh @@ -35,7 +35,7 @@ function install_linux_deps() { libaio libuuid-devel zip unzip \ ccache lcov libtool m4 autoconf automake - sudo pip3 install conan==1.61.0 + sudo pip3 install conan==2.5.0 echo "source scl_source enable devtoolset-11" | sudo tee -a /etc/profile.d/devtoolset-11.sh echo "source scl_source enable llvm-toolset-11.0" | sudo tee -a /etc/profile.d/llvm-toolset-11.sh echo "export CLANG_TOOLS_PATH=/opt/rh/llvm-toolset-11.0/root/usr/bin" | sudo tee -a /etc/profile.d/llvm-toolset-11.sh @@ -69,7 +69,7 @@ function install_mac_deps() { export PATH="/usr/local/opt/grep/libexec/gnubin:$PATH" brew update && brew upgrade && brew cleanup - pip3 install conan==1.61.0 + pip3 install conan==2.5.0 if [[ $(arch) == 'arm64' ]]; then brew install openssl diff --git a/scripts/install_deps_msys.sh b/scripts/install_deps_msys.sh index 793612286789d..4a53299796226 100644 --- a/scripts/install_deps_msys.sh +++ b/scripts/install_deps_msys.sh @@ -23,7 +23,7 @@ pacmanInstall() mingw-w64-x86_64-diffutils \ mingw-w64-x86_64-go - pip3 install conan==1.61.0 + pip3 install conan==2.5.0 } updateKey()