From 07542a3b11a02381a508676f959a4701476b8bf3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 Oct 2021 04:02:18 +0000 Subject: [PATCH] build(deps): update pyyaml requirement from ~=5.4 to ~=6.0 Updates the requirements on [pyyaml](https://github.com/yaml/pyyaml) to permit the latest version. - [Release notes](https://github.com/yaml/pyyaml/releases) - [Changelog](https://github.com/yaml/pyyaml/blob/master/CHANGES) - [Commits](https://github.com/yaml/pyyaml/compare/5.4...6.0) --- updated-dependencies: - dependency-name: pyyaml dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index b19158b56..c28aae98a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,7 +9,7 @@ psycopg2-binary~=2.9 pygit2>=1.2 pygtrie~=2.4 pyparsing~=2.4 -PyYAML~=5.4 +PyYAML~=6.0 rich~=10.9 schema~=0.7.4 sqlalchemy-migrate~=0.13 diff --git a/setup.py b/setup.py index e546b2517..247b3ece8 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ include_package_data=True, setup_requires=["pytest-runner", "setuptools_scm"], install_requires=[ - "Jinja2>=2.10,<4.0", "PyYAML~=5.1", "attrs>=19.3,<22.0", "dill~=0.3", + "Jinja2>=2.10,<4.0", "PyYAML>=5.1,<7.0", "attrs>=19.3,<22.0", "dill~=0.3", "pathos~=0.2", "parse~=1.14", "plumbum~=1.6", "psutil~=5.6", "psycopg2-binary~=2.8", "pygit2>=1.2.1,<1.6.0", "pygtrie~=2.3", "pyparsing~=2.4", "rich>=6.1,<11.0", "sqlalchemy-migrate~=0.13",