diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 7874a326..afac6db8 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.41.1 +current_version = 2.41.2 commit = True tag = False diff --git a/analysis_runner/_version.py b/analysis_runner/_version.py index e487cd62..8497a7da 100644 --- a/analysis_runner/_version.py +++ b/analysis_runner/_version.py @@ -1,4 +1,4 @@ """Can be used to access the version from the code""" # Do not edit this file, pipeline versioning is governed by git tags -__version__ = '2.41.1' +__version__ = '2.41.2' diff --git a/analysis_runner/cromwell.py b/analysis_runner/cromwell.py index c5076444..02746b44 100644 --- a/analysis_runner/cromwell.py +++ b/analysis_runner/cromwell.py @@ -499,7 +499,7 @@ def watch_workflow_and_get_output( query_command( watch_workflow, watch_workflow.__name__, - workflow_id_file, + str(workflow_id_file), max_sequential_exception_count, max_poll_interval, exponential_decrease_seconds, diff --git a/setup.py b/setup.py index c914cfeb..716817e9 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ def read_file(filename: str) -> str: setuptools.setup( name=PKG, # This tag is automatically updated by bump2version - version='2.41.1', + version='2.41.2', description='Analysis runner to help make analysis results reproducible', long_description=read_file('README.md'), long_description_content_type='text/markdown',