From 2d2f6311e4821f11341d9d302ed8d74b035a15dd Mon Sep 17 00:00:00 2001 From: Marco Donadoni Date: Tue, 16 Jul 2024 10:48:46 +0200 Subject: [PATCH 1/2] build(python): upgrade yadage dependencies (#462) Upgrade `adage` to v0.11.0, needed by reana-workflow-engine-yadage to work with Ubuntu 24.04 and Python 3.12. Move the `jsonschema` upper pin to the `yadage` extra. Related to https://github.com/reanahub/reana/issues/808 --- setup.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index bfcbdad6..f3abd96b 100755 --- a/setup.py +++ b/setup.py @@ -33,7 +33,12 @@ "kubernetes": [ "kubernetes>=22.0.0,<23.0.0", ], - "yadage": ["adage~=0.10.1", "yadage~=0.20.1", "yadage-schemas~=0.10.6"], + "yadage": [ + "adage~=0.11.0", + "yadage~=0.20.1", + "yadage-schemas~=0.10.6", + "jsonschema<4.10.0", # see https://github.com/yadage/yadage-schemas/issues/38 + ], "cwl": ["cwltool==3.1.20210628163208"], "snakemake": [ "snakemake==7.32.4", @@ -66,7 +71,7 @@ "checksumdir>=1.1.4,<1.2", "click>=7.0", "fs>=2.0", - "jsonschema[format]>=3.0.1,<4.0.0", + "jsonschema[format]>=3.0.1", "kombu>=4.6", "mock>=3.0,<4", "PyYAML>=5.1,<7.0", From e37f2721e48b3517513ab660bcabe4e3514c50d3 Mon Sep 17 00:00:00 2001 From: Marco Donadoni Date: Tue, 23 Jul 2024 12:39:07 +0200 Subject: [PATCH 2/2] chore(master): release 0.95.0a3 --- reana_commons/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reana_commons/version.py b/reana_commons/version.py index ba7d2194..e284a6c8 100755 --- a/reana_commons/version.py +++ b/reana_commons/version.py @@ -14,4 +14,4 @@ from __future__ import absolute_import, print_function -__version__ = "0.95.0a2" +__version__ = "0.95.0a3"