Skip to content

Commit

Permalink
Typos fixed, Release prepared
Browse files Browse the repository at this point in the history
  • Loading branch information
luav committed Aug 31, 2018
1 parent db1e1a8 commit caabd46
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion mpepool.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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=(
Expand All @@ -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.'
Expand Down

0 comments on commit caabd46

Please sign in to comment.