From 691c25ab38ab7b1bf3a21ba1400ad3aaaa448866 Mon Sep 17 00:00:00 2001 From: gnattishness <1620192+gnattishness@users.noreply.github.com> Date: Tue, 8 Oct 2019 15:44:07 +1100 Subject: [PATCH] Update config_helper requirements. Fixes build errors for python 3.8. --- test_libs/config_helpers/requirements.txt | 2 +- test_libs/config_helpers/setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test_libs/config_helpers/requirements.txt b/test_libs/config_helpers/requirements.txt index f2f208c3f..6c7334268 100644 --- a/test_libs/config_helpers/requirements.txt +++ b/test_libs/config_helpers/requirements.txt @@ -1 +1 @@ -ruamel.yaml==0.15.96 +ruamel.yaml==0.16.5 diff --git a/test_libs/config_helpers/setup.py b/test_libs/config_helpers/setup.py index 9f0ea0641..3f893f3d4 100644 --- a/test_libs/config_helpers/setup.py +++ b/test_libs/config_helpers/setup.py @@ -4,6 +4,6 @@ setup( name='config_helpers', packages=['preset_loader'], install_requires=[ - "ruamel.yaml==0.15.96" + "ruamel.yaml==0.16.5" ] )