From b3ddc540c0ad29a0b74c1826f5a0aababcbc4b2f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 11 Apr 2024 06:14:12 +0000 Subject: [PATCH] Update cwl-utils requirement from <0.33,>=0.32 to >=0.32,<0.34 Updates the requirements on [cwl-utils](https://github.com/common-workflow-language/cwl-utils) to permit the latest version. - [Release notes](https://github.com/common-workflow-language/cwl-utils/releases) - [Commits](https://github.com/common-workflow-language/cwl-utils/compare/v0.32...v0.33) --- updated-dependencies: - dependency-name: cwl-utils dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 2ed9c0ba..24203b69 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -cwl-utils >= 0.32,< 0.33 +cwl-utils >= 0.32,< 0.34 ruamel.yaml<0.17.22 regex miniwdl diff --git a/setup.py b/setup.py index 93de712e..1d86c643 100644 --- a/setup.py +++ b/setup.py @@ -18,5 +18,5 @@ long_description_content_type="text/markdown", packages=find_packages(), setup_requires=[] + pytest_runner, - install_requires=["cwl-utils>=0.32,<0.33", "miniwdl", "regex"], + install_requires=["cwl-utils>=0.32,<0.34", "miniwdl", "regex"], )