Fix Conan version constraint in workflows (#4430)

Conan 2.0 is not compatible with the current workflows.
This commit is contained in:
John Freeman
2023-02-22 21:54:51 -06:00
committed by GitHub
parent 2929748898
commit 60c276d90b
2 changed files with 2 additions and 2 deletions

View File

@@ -44,7 +44,7 @@ jobs:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-${{ hashFiles('.github/workflows/nix.yml') }}
- name: install Conan
run: pip install wheel 'conan>=1.52.0'
run: pip install wheel 'conan~=1.52'
- name: check environment
run: |
echo ${PATH} | tr ':' '\n'

View File

@@ -46,7 +46,7 @@ jobs:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-${{ hashFiles('.github/workflows/windows.yml') }}
- name: install Conan
run: pip install wheel 'conan>=1.52.0'
run: pip install wheel 'conan~=1.52'
- name: check environment
run: |
$env:PATH -split ';'