From 5d3f56bc6902e8df242b037c4290d346f54b0dee Mon Sep 17 00:00:00 2001 From: Tim Ryan Date: Fri, 4 Aug 2023 11:29:54 -0400 Subject: [PATCH] RM-101 max PyYAML version --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ff2352258..8dabb5684 100755 --- a/setup.py +++ b/setup.py @@ -304,7 +304,9 @@ def initialize_options(self) -> None: # what we support # # https://github.com/aws/aws-cli/blob/develop/setup.py - 'PyYAML>=3.10,<5.5', + # #### NEW UNFORTUNATE CONSTRAINTS ##### + # https://github.com/yaml/pyyaml/issues/724 + 'PyYAML>=3.10,<=5.3.1', # Not sure how/if interface will change in db-facts, so # let's be conservative about what we're specifying for now. 'db-facts>=4,<5',