Update to conan 1.60.1

This commit is contained in:
Sebastian Messmer 2023-06-19 09:11:16 -07:00
parent 9ed731f2dd
commit 9e9dcf409c
2 changed files with 5 additions and 5 deletions

View File

@ -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' }}

View File

@ -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
---------------