From a63e202d64be5671f05c9f10b1e8ac70e4db8a56 Mon Sep 17 00:00:00 2001 From: Alputer Date: Thu, 24 Oct 2024 11:08:42 +0200 Subject: [PATCH] build(installation): upgrade reana-commons version (#733) --- AUTHORS.md | 1 + setup.py | 6 ++---- tests/test_cli_workflows.py | 3 ++- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/AUTHORS.md b/AUTHORS.md index 1b43d72e..d3691e9d 100644 --- a/AUTHORS.md +++ b/AUTHORS.md @@ -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) diff --git a/setup.py b/setup.py index 256e00c9..0218c287 100644 --- a/setup.py +++ b/setup.py @@ -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", ], } @@ -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'", diff --git a/tests/test_cli_workflows.py b/tests/test_cli_workflows.py index e5971fc7..df645fd0 100644 --- a/tests/test_cli_workflows.py +++ b/tests/test_cli_workflows.py @@ -12,6 +12,7 @@ import json import sys from typing import List +from pathlib import Path import pytest import yaml @@ -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"]