Skip to content

Commit

Permalink
chore(master): update reana-commons to 0.95.0a5 (#733)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alputer committed Oct 30, 2024
1 parent dda80d1 commit 9adc4b0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
1 change: 1 addition & 0 deletions AUTHORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ The list of contributors in alphabetical order:

- [Adelina Lintuluoto](https://orcid.org/0000-0002-0726-1452)
- [Alastair Lyall](https://orcid.org/0009-0000-4955-8935)
- [Alp Tuna](https://orcid.org/0009-0001-1915-3993)
- [Anton Khodak](https://orcid.org/0000-0003-3263-4553)
- [Audrius Mecionis](https://orcid.org/0000-0002-3759-1663)
- [Camila Diaz](https://orcid.org/0000-0001-5543-797X)
Expand Down
6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@
],
"tests": [
"pytest-reana>=0.95.0a4,<0.96.0",
"reana-commons[kubernetes]>=0.95.0a3,<0.96.0",
"reana-commons[kubernetes] @ git+https://github.com/reanahub/reana-commons.git@master",
"reana-commons[kubernetes]>=0.95.0a5,<0.96.0",
],
}

Expand All @@ -42,8 +41,7 @@
"click>=7",
"pathspec==0.9.0",
"jsonpointer>=2.0",
"reana-commons[yadage,snakemake,cwl]>=0.95.0a3,<0.96.0",
"reana-commons[yadage,snakemake,cwl] @ git+https://github.com/reanahub/reana-commons.git@master",
"reana-commons[yadage,snakemake,cwl]>=0.95.0a5,<0.96.0",
"tablib>=0.12.1,<0.13",
"werkzeug>=0.14.1 ; python_version<'3.10'",
"werkzeug>=0.15.0 ; python_version>='3.10'",
Expand Down
3 changes: 2 additions & 1 deletion tests/test_cli_workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import json
import sys
from typing import List
from pathlib import Path

import pytest
import yaml
Expand Down Expand Up @@ -759,7 +760,7 @@ def test_create_snakemake_workflow_from_json_parameters(
access_token=reana_token,
parameters=workflow_json["inputs"],
workflow_engine="snakemake",
workspace_path=str(tmp_path),
workspace_path=Path(tmp_path),
)
assert response["workflow_name"] == result["workflow_name"]
assert response["message"] == result["message"]
Expand Down

0 comments on commit 9adc4b0

Please sign in to comment.