From 478f38cc7f987aa35deb9e7dc031e1feac540d67 Mon Sep 17 00:00:00 2001 From: "@jmmshn" Date: Tue, 11 Jul 2023 13:42:03 -0700 Subject: [PATCH 1/2] ruamel yaml dep typos --- requirements-docs.txt | 1 - setup.py | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-docs.txt b/requirements-docs.txt index b1dcec758..b16444a11 100644 --- a/requirements-docs.txt +++ b/requirements-docs.txt @@ -3,4 +3,3 @@ mkdocs-material==8.3.9 mkdocs-minify-plugin==0.5.0 mkdocstrings==0.18.1 jinja2<3.2.0 -ruamel-yaml<18.0 diff --git a/setup.py b/setup.py index 9d5e6f67d..7ab94b7e3 100644 --- a/setup.py +++ b/setup.py @@ -27,6 +27,7 @@ include_package_data=True, install_requires=[ "setuptools", + "ruamel.yaml", "pydantic<=1.10.11", "pydantic>=0.32.2", "pymongo>=4.2.0", From 6623a7843131895a4c98e04b019091d085b4fe81 Mon Sep 17 00:00:00 2001 From: "@jmmshn" Date: Tue, 11 Jul 2023 13:44:35 -0700 Subject: [PATCH 2/2] pin --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7ab94b7e3..9aa87c3ea 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ include_package_data=True, install_requires=[ "setuptools", - "ruamel.yaml", + "ruamel.yaml<0.18", "pydantic<=1.10.11", "pydantic>=0.32.2", "pymongo>=4.2.0",