Skip to content

Commit

Permalink
Fix Conan version constraint in workflows (#4430)
Browse files Browse the repository at this point in the history
Conan 2.0 is not compatible with the current workflows.
  • Loading branch information
thejohnfreeman authored Feb 23, 2023
1 parent 2929748 commit 60c276d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 ';'
Expand Down

0 comments on commit 60c276d

Please sign in to comment.