Skip to content

Commit 5cb5810

Browse files
authored
Require ruamel.yaml>=0.17.24 (#3406)
1 parent 7484d1a commit 5cb5810

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.config/requirements-lock.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ pygments==2.15.1
2626
pyrsistent==0.19.3
2727
pyyaml==6.0
2828
rich==13.3.5
29-
ruamel-yaml==0.17.22
29+
ruamel-yaml==0.17.24
3030
subprocess-tee==0.4.1
3131
tomli==2.0.1
3232
typing-extensions==4.5.0

.config/requirements.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jsonschema>=4.10.0 # MIT, version needed for improved errors
88
packaging>=21.3 # Apache-2.0,BSD-2-Clause
99
pyyaml>=5.4.1 # MIT (centos 9 has 5.3.1)
1010
rich>=12.0.0 # MIT
11-
ruamel.yaml>=0.17.22,<0.18 # MIT, next version is planned to have breaking changes
11+
ruamel.yaml>=0.17.24,<0.18 # MIT, next version is planned to have breaking changes
1212
subprocess-tee>=0.4.1 # MIT, used by ansible-compat
1313
yamllint >= 1.30.0 # GPLv3
1414
wcmatch>=8.1.2 # MIT

.config/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ rdflib==6.3.2
8888
regex==2023.3.23
8989
requests==2.28.2
9090
rich==13.3.5
91-
ruamel-yaml==0.17.22
91+
ruamel-yaml==0.17.24
9292
six==1.16.0
9393
soupsieve==2.4
9494
spdx-tools==0.7.1

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ repos:
149149
- jinja2
150150
- pytest>=7.2.2
151151
- rich>=13.2.0
152-
- ruamel-yaml>=0.17.22
152+
- ruamel-yaml>=0.17.24
153153
- ruamel-yaml-clib>=0.2.7
154154
- spdx-tools
155155
- subprocess-tee
@@ -179,7 +179,7 @@ repos:
179179
- pytest>=7.2.2
180180
- pyyaml
181181
- rich>=13.2.0
182-
- ruamel-yaml>=0.17.22
182+
- ruamel-yaml>=0.17.24
183183
- ruamel-yaml-clib>=0.2.7
184184
- spdx-tools
185185
- typing_extensions

examples/playbooks/vars/strings.transformed.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
single: single # this is a comment
66
single_with_double: '"single" quoted' # this is a comment
77

8-
single_multiline_with_octothorpe: "single over 160 char line to force wrapping. over 160 char line to force wrapping. over 160 char line to force wrapping. over 160\n\
8+
single_multiline_with_octothorpe: "single over 160 char line to force wrapping. over 160 char line to force wrapping. over 160 char line to force wrapping. over 160\n
99
# this is not a comment"
1010

1111
double: double # this is a comment
1212
double_with_single: "'double' quoted" # this is a comment
1313

14-
double_multiline_with_octothorpe: "double over 160 char line to force wrapping. over 160 char line to force wrapping. over 160 char line to force wrapping. over 160\n\
14+
double_multiline_with_octothorpe: "double over 160 char line to force wrapping. over 160 char line to force wrapping. over 160 char line to force wrapping. over 160\n
1515
# this is not a comment"
1616

1717
# this is a comment

0 commit comments

Comments
 (0)