Skip to content

Commit 39b11b9

Browse files
authored
Merge pull request OSGeo#11050 from rouault/fix_other_checks
CI: fix 'other_checks' job that breaks on 'cffconvert --validate'
2 parents 4a92011 + f3b6251 commit 39b11b9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/code_checks.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,8 @@ jobs:
143143
- name: Install Requirements
144144
run: |
145145
sudo apt install python3-pip wget
146-
sudo pip3 install cffconvert
146+
# ruamel.yaml.clib 0.2.9 throws a 'TypeError: a string or stream input is required' when running cffconvert --validate
147+
sudo pip3 install cffconvert "ruamel.yaml.clib<0.2.9"
147148
148149
- name: Validate citation file
149150
run: |

0 commit comments

Comments
 (0)