Skip to content

Commit

Permalink
build(python): upgrade yadage dependencies (reanahub#421)
Browse files Browse the repository at this point in the history
Upgrade `adage` to v0.11.0, needed by reana-workflow-engine-yadadge to
work with Ubuntu 24.04 and Python 3.12.

Move the `jsonschema` upper pin to the `yadage` extra.

Related to reanahub/reana#808
  • Loading branch information
mdonadoni committed Jul 16, 2024
1 parent a7bcf7a commit 06841be
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion reana_commons/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

from __future__ import absolute_import, print_function

__version__ = "0.95.0a2"
__version__ = "1.1.2"
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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==6.15.5 ; python_version<'3.7'", # Snakemake v7 requires Python 3.7+
Expand Down Expand Up @@ -73,7 +78,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",
Expand Down

0 comments on commit 06841be

Please sign in to comment.