From caabd4649d89c75a177c47a4f7e297834d005b50 Mon Sep 17 00:00:00 2001 From: luav Date: Fri, 31 Aug 2018 03:31:30 +0200 Subject: [PATCH] Typos fixed, Release prepared --- README.md | 2 +- mpepool.py | 2 +- setup.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 80e4b74..206d117 100644 --- a/README.md +++ b/README.md @@ -186,7 +186,7 @@ Job(name, workdir=None, args=(), timeout=0, rsrtonto=False, task=None #,* ATTENTION: PIPE is a buffer in RAM, so do not use it if the output data is huge or unlimited. The path is interpreted in the CONTEXT of the CALLER poutlog: str - file name to log non-empty piped stdout pre-pended with the timestamp. Actual only if stdout is PIPE. - perrlog: str - file name to log non-empty piped stderr pre-pended with the timestamp. Actual only if stdout is PIPE. + perrlog: str - file name to log non-empty piped stderr pre-pended with the timestamp. Actual only if stderr is PIPE. Scheduling parameters: omitafn - omit affinity policy of the scheduler, which is actual when the affinity is enabled diff --git a/mpepool.py b/mpepool.py index 8632ce4..5934914 100755 --- a/mpepool.py +++ b/mpepool.py @@ -903,7 +903,7 @@ def __init__(self, name, workdir=None, args=(), timeout=0, rsrtonto=False, task= ATTENTION: PIPE is a buffer in RAM, so do not use it if the output data is huge or unlimited. The path is interpreted in the CALLER CONTEXT poutlog: str - file name to log non-empty piped stdout pre-pended with the timestamp. Actual only if stdout is PIPE. - perrlog: str - file name to log non-empty piped stderr pre-pended with the timestamp. Actual only if stdout is PIPE. + perrlog: str - file name to log non-empty piped stderr pre-pended with the timestamp. Actual only if stderr is PIPE. Scheduling parameters: omitafn - omit affinity policy of the scheduler, which is actual when the affinity is enabled diff --git a/setup.py b/setup.py index 02209dd..5ddc836 100755 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ setup( name=pkgname, # This is the name of your PyPI-package. - version='3.2.0', # Update the version number for new releases + version='3.2.1', # Update the version number for new releases description=('A lightweight multi-process Execution Pool with load balancing' ' and customizable resource consumption constraints.'), # Required, "Summary" metadata field long_description=( @@ -27,7 +27,7 @@ 'All main functionality is implemented as a single-file module to be easily' ' included into your project and customized as a part of your distribution ' '(like in [PyCaBeM](https://github.com/eXascaleInfolab/PyCABeM) to execute' - ' muliple apps in parralel on the dedicated CPU cores and avoiding their' + ' multiple apps in parallel on the dedicated CPU cores and avoiding their' ' swapping from the main memory), also it can be installed as a library.' ' An optional minimalistic Web interface is provided in the separate module' ' to inspect the load balancer and execution pool.'