Skip to content

Commit 60c276d

Browse files
Fix Conan version constraint in workflows (XRPLF#4430)
Conan 2.0 is not compatible with the current workflows.
1 parent 2929748 commit 60c276d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/nix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
path: ${{ steps.pip-cache.outputs.dir }}
4545
key: ${{ runner.os }}-${{ hashFiles('.github/workflows/nix.yml') }}
4646
- name: install Conan
47-
run: pip install wheel 'conan>=1.52.0'
47+
run: pip install wheel 'conan~=1.52'
4848
- name: check environment
4949
run: |
5050
echo ${PATH} | tr ':' '\n'

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
path: ${{ steps.pip-cache.outputs.dir }}
4747
key: ${{ runner.os }}-${{ hashFiles('.github/workflows/windows.yml') }}
4848
- name: install Conan
49-
run: pip install wheel 'conan>=1.52.0'
49+
run: pip install wheel 'conan~=1.52'
5050
- name: check environment
5151
run: |
5252
$env:PATH -split ';'

0 commit comments

Comments
 (0)