Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(master): update reana-commons to 0.95.0a5 #733

Merged
merged 1 commit into from
Oct 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading