From 7dbf0c15e0f68bdacd10b6a8a1d94a8e89718fbf Mon Sep 17 00:00:00 2001 From: stealthycoin Date: Fri, 28 Feb 2020 13:10:25 -0800 Subject: [PATCH] Update make-bundle script to include PyYAML 5.2 for compatibility PyYAML 5.3 dropped support for python 3.4. https://github.com/yaml/pyyaml/pull/345 --- .changes/next-release/enhancement-PyYAML-42538.json | 5 +++++ scripts/make-bundle | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .changes/next-release/enhancement-PyYAML-42538.json diff --git a/.changes/next-release/enhancement-PyYAML-42538.json b/.changes/next-release/enhancement-PyYAML-42538.json new file mode 100644 index 000000000000..a2fe418f130d --- /dev/null +++ b/.changes/next-release/enhancement-PyYAML-42538.json @@ -0,0 +1,5 @@ +{ + "category": "PyYAML", + "type": "enhancement", + "description": "Increased the uppber bound on the PyYAML dependency to 5.3." +} diff --git a/scripts/make-bundle b/scripts/make-bundle index 478909770274..47ad97643263 100755 --- a/scripts/make-bundle +++ b/scripts/make-bundle @@ -24,9 +24,10 @@ from contextlib import contextmanager EXTRA_RUNTIME_DEPS = [ # Use an up to date virtualenv/pip/setuptools on > 2.6. ('virtualenv', '16.7.8'), - # The following is for python 3.4 compatibility. + # The following are for python 3.4 compatibility. ('colorama', '0.4.1'), ('urllib3', '1.25.7'), + ('PyYAML', '5.2'), ] BUILDTIME_DEPS = [ ('setuptools-scm', '3.3.3'),