From 2b2671df9e7a5c48199aea88ceec6c831cc88b9c Mon Sep 17 00:00:00 2001 From: alangenfeld Date: Mon, 29 Mar 2021 10:31:11 -0500 Subject: [PATCH] refine pyyaml req Summary: we use the `sort_keys` argument which was not always present, see comment on related issue for details resolves https://github.com/dagster-io/dagster/issues/3955 Test Plan: bk Reviewers: dgibson, rexledesma, cdecarolis Reviewed By: rexledesma Differential Revision: https://dagster.phacility.com/D7176 --- python_modules/dagster/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_modules/dagster/setup.py b/python_modules/dagster/setup.py index 69b6caae77c0..f75d9c966c32 100644 --- a/python_modules/dagster/setup.py +++ b/python_modules/dagster/setup.py @@ -61,7 +61,7 @@ def get_version() -> str: "click>=5.0", "coloredlogs>=6.1, <=14.0", "Jinja2", - "PyYAML", + "PyYAML>=5.1", # core (not explicitly expressed atm) "alembic>=1.2.1", "croniter>=0.3.34",