From 9e9dcf409ca8473aa67c6c907dc30c4f60873fd7 Mon Sep 17 00:00:00 2001 From: Sebastian Messmer Date: Mon, 19 Jun 2023 09:11:16 -0700 Subject: [PATCH] Update to conan 1.60.1 --- .github/workflows/main.yaml | 4 ++-- README.md | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 6589beb0..06ed2aa6 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -256,7 +256,7 @@ jobs: if [[ "${{matrix.os}}" == "ubuntu-18.04" ]]; then python3 -m pip install setuptools fi - python3 -m pip install conan==1.59 + python3 -m pip install conan==1.60.1 - name: Save pip cache # note: this access key has write access to the cache. This can't run on PRs. if: ${{github.event_name == 'push' }} @@ -461,7 +461,7 @@ jobs: shell: bash run: | # Using "python3 -m pip" instead of "pip3" to make sure we get the same pip that we queried the cache dir for the Github Cache action - python3 -m pip install conan==1.59 + python3 -m pip install conan==1.60.1 - name: Save pip cache # note: this access key has write access to the cache. This can't run on PRs. if: ${{github.event_name == 'push' }} diff --git a/README.md b/README.md index f1824891..b6e36b92 100644 --- a/README.md +++ b/README.md @@ -99,15 +99,15 @@ You can use the following commands to install these requirements # Ubuntu $ sudo apt install git g++ cmake make pkg-config libcurl4-openssl-dev libssl-dev libfuse-dev python3 python3-pip - $ sudo pip3 install conan==1.59 + $ sudo pip3 install conan==1.60.1 # Fedora $ sudo dnf install git gcc-c++ cmake make pkgconf libcurl-devel openssl-devel fuse-devel python3 python3-pip - $ sudo pip3 install conan==1.59 + $ sudo pip3 install conan==1.60.1 # Macintosh $ brew install cmake pkg-config openssl libomp macfuse - $ sudo pip3 install conan==1.59 + $ sudo pip3 install conan==1.60.1 Build & Install ---------------