diff --git a/pbprocesstools/__init__.py b/pbprocesstools/__init__.py index a472b51..76af6c6 100644 --- a/pbprocesstools/__init__.py +++ b/pbprocesstools/__init__.py @@ -41,7 +41,7 @@ PB_PROCESS_TOOLS_VERSION_MAJOR = 1 PB_PROCESS_TOOLS_VERSION_MINOR = 2 -PB_PROCESS_TOOLS_VERSION_PATCH = 2 +PB_PROCESS_TOOLS_VERSION_PATCH = 3 PB_PROCESS_TOOLS_VERSION = str(PB_PROCESS_TOOLS_VERSION_MAJOR) + "." + str(PB_PROCESS_TOOLS_VERSION_MINOR) + "." + str(PB_PROCESS_TOOLS_VERSION_PATCH) PB_PROCESS_TOOLS_VERSION_OBJ = LooseVersion(PB_PROCESS_TOOLS_VERSION) diff --git a/pbprocesstools/pbpt_q_process.py b/pbprocesstools/pbpt_q_process.py index ced3e5d..5e208e6 100644 --- a/pbprocesstools/pbpt_q_process.py +++ b/pbprocesstools/pbpt_q_process.py @@ -607,7 +607,7 @@ def create_jobs_report(self, out_report_file=None): out_info_dict['job_times']['time_max_secs'] = max(job_times) if len(job_times) > 1: out_info_dict['job_times']['time_stdev_secs'] = statistics.stdev(job_times) - out_info_dict['job_times']['download_time_median_secs'] = statistics.median(job_times) + out_info_dict['job_times']['time_median_secs'] = statistics.median(job_times) if (len(job_times) > 1) and (py_sys_version_flt >= 3.8): out_info_dict['job_times']['time_quartiles_secs'] = statistics.quantiles(job_times) diff --git a/setup.py b/setup.py index 328185e..f4ea8bd 100644 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ import os setuptools.setup(name='pb_process_tools', - version='1.2.2', + version='1.2.3', description='Tools for batch processing data, including on HPC cluster with slurm.', author='Pete Bunting', author_email='petebunting@mac.com',