From bb0b1a1d12fa362b584a3278bd94adfcf9334ae5 Mon Sep 17 00:00:00 2001 From: Marco Donadoni Date: Thu, 20 Jul 2023 10:19:45 +0200 Subject: [PATCH] setup: bump upper pin of PyYAML Bump the upper pin on PyYAML in order to support v6, to be consistent with the other REANA components. Closes reanahub/reana-commons#399 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 83377eb4..38f4b5d6 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ install_requires = [ "click>=7", "colorama>=0.3.9", - "PyYAML>=5.1,<6.0", + "PyYAML>=5.1,<7.0", "semver>=2.10.2,<3.0.0", "packaging>=20.4", ]