Skip to content

Commit

Permalink
report fix the naming median time.
Browse files Browse the repository at this point in the history
  • Loading branch information
petebunting committed Jul 2, 2020
1 parent 5cd2970 commit 254d07f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pbprocesstools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion pbprocesstools/pbpt_q_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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='[email protected]',
Expand Down

0 comments on commit 254d07f

Please sign in to comment.