Skip to content

Commit

Permalink
Fixed ruamel.yaml issue on Python 3.6 by pinning to <0.17.22
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Maier <[email protected]>
  • Loading branch information
andy-maier committed Nov 3, 2023
1 parent a75ccf3 commit 18d8cb8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ pep517>=0.9.1
# Safety is run only on Python >=3.6
safety>=2.2.0; python_version >= '3.6'
dparse>=0.6.2; python_version >= '3.6'
ruamel.yaml>=0.17.21,<0.17.22; python_version == '3.6'
ruamel.yaml>=0.17.21; python_version >= '3.7'

# Unit test:
# pytest 5.0.0 has removed support for Python < 3.5
Expand Down
1 change: 1 addition & 0 deletions minimum-constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ pep517==0.9.1
# Safety is run only on Python >=3.6
safety==2.2.0; python_version >= '3.6'
dparse==0.6.2; python_version >= '3.6'
ruamel.yaml==0.17.21; python_version >= '3.6'

# Unit test (imports into testcases):
# pytest 5.0.0 has removed support for Python < 3.5
Expand Down

0 comments on commit 18d8cb8

Please sign in to comment.