Skip to content

Commit

Permalink
Update make-bundle script to include PyYAML 5.2 for compatibility
Browse files Browse the repository at this point in the history
PyYAML 5.3 dropped support for python
3.4. yaml/pyyaml#345
  • Loading branch information
stealthycoin committed Feb 28, 2020
1 parent f7cdafb commit 7dbf0c1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changes/next-release/enhancement-PyYAML-42538.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"category": "PyYAML",
"type": "enhancement",
"description": "Increased the uppber bound on the PyYAML dependency to 5.3."
}
3 changes: 2 additions & 1 deletion scripts/make-bundle
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
Expand Down

0 comments on commit 7dbf0c1

Please sign in to comment.