Skip to content

Commit

Permalink
Pass workflow ID file as a string (#643)
Browse files Browse the repository at this point in the history
* workflow id file as a string

* Bump version: 2.41.1 → 2.41.2
  • Loading branch information
MattWellie committed Jun 27, 2023
1 parent c7aa634 commit a15ed15
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.41.1
current_version = 2.41.2
commit = True
tag = False

Expand Down
2 changes: 1 addition & 1 deletion analysis_runner/_version.py
Original file line number Diff line number Diff line change
@@ -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'
2 changes: 1 addition & 1 deletion analysis_runner/cromwell.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit a15ed15

Please sign in to comment.