Update config_helper requirements.

Fixes build errors for python 3.8.
This commit is contained in:
gnattishness 2019-10-08 15:44:07 +11:00
parent b0dd7c38dc
commit 691c25ab38
No known key found for this signature in database
GPG Key ID: 1180DD721B84AC03
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
ruamel.yaml==0.15.96 ruamel.yaml==0.16.5

View File

@ -4,6 +4,6 @@ setup(
name='config_helpers', name='config_helpers',
packages=['preset_loader'], packages=['preset_loader'],
install_requires=[ install_requires=[
"ruamel.yaml==0.15.96" "ruamel.yaml==0.16.5"
] ]
) )