Skip to content

Commit a63e202

Browse files
committed
build(installation): upgrade reana-commons version (#733)
1 parent dda80d1 commit a63e202

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

AUTHORS.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ The list of contributors in alphabetical order:
44

55
- [Adelina Lintuluoto](https://orcid.org/0000-0002-0726-1452)
66
- [Alastair Lyall](https://orcid.org/0009-0000-4955-8935)
7+
- [Alp Tuna](https://orcid.org/0009-0001-1915-3993)
78
- [Anton Khodak](https://orcid.org/0000-0003-3263-4553)
89
- [Audrius Mecionis](https://orcid.org/0000-0002-3759-1663)
910
- [Camila Diaz](https://orcid.org/0000-0001-5543-797X)

setup.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@
2727
],
2828
"tests": [
2929
"pytest-reana>=0.95.0a4,<0.96.0",
30-
"reana-commons[kubernetes]>=0.95.0a3,<0.96.0",
31-
"reana-commons[kubernetes] @ git+https://github.com/reanahub/reana-commons.git@master",
30+
"reana-commons[kubernetes]>=0.95.0a5,<0.96.0",
3231
],
3332
}
3433

@@ -42,8 +41,7 @@
4241
"click>=7",
4342
"pathspec==0.9.0",
4443
"jsonpointer>=2.0",
45-
"reana-commons[yadage,snakemake,cwl]>=0.95.0a3,<0.96.0",
46-
"reana-commons[yadage,snakemake,cwl] @ git+https://github.com/reanahub/reana-commons.git@master",
44+
"reana-commons[yadage,snakemake,cwl]>=0.95.0a5,<0.96.0",
4745
"tablib>=0.12.1,<0.13",
4846
"werkzeug>=0.14.1 ; python_version<'3.10'",
4947
"werkzeug>=0.15.0 ; python_version>='3.10'",

tests/test_cli_workflows.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
import json
1313
import sys
1414
from typing import List
15+
from pathlib import Path
1516

1617
import pytest
1718
import yaml
@@ -759,7 +760,7 @@ def test_create_snakemake_workflow_from_json_parameters(
759760
access_token=reana_token,
760761
parameters=workflow_json["inputs"],
761762
workflow_engine="snakemake",
762-
workspace_path=str(tmp_path),
763+
workspace_path=Path(tmp_path),
763764
)
764765
assert response["workflow_name"] == result["workflow_name"]
765766
assert response["message"] == result["message"]

0 commit comments

Comments
 (0)