Skip to content

Commit 4293dfc

Browse files
committed
tag: 0.70.18
1 parent a9934de commit 4293dfc

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ better multiprocessing and multithreading in Python
44

55
About Multiprocess
66
------------------
7-
``multiprocess`` is a fork of ``multiprocessing``. ``multiprocess`` extends ``multiprocessing`` to provide enhanced serialization, using `dill`. ``multiprocess`` leverages ``multiprocessing`` to support the spawning of processes using the API of the Python standard library's ``threading`` module. ``multiprocessing`` has been distributed as part of the standard library since Python 2.6.
7+
``multiprocess`` is a fork of ``multiprocessing``. ``multiprocess`` extends ``multiprocessing`` to provide enhanced serialization, using ``dill``. ``multiprocess`` leverages ``multiprocessing`` to support the spawning of processes using the API of the Python standard library's ``threading`` module. ``multiprocessing`` has been distributed as part of the standard library since Python 2.6.
88

99
``multiprocess`` is part of ``pathos``, a Python framework for heterogeneous computing.
1010
``multiprocess`` is in active development, so any user feedback, bug reports, comments,
@@ -63,7 +63,7 @@ Requirements
6363

6464
* ``python`` (or ``pypy``), **>=3.8**
6565
* ``setuptools``, **>=42**
66-
* ``dill``, **>=0.3.9**
66+
* ``dill``, **>=0.4.0**
6767

6868

6969
Basic Usage

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[egg_info]
2-
tag_build = .dev0
2+
#tag_build = .dev0
33

44
[bdist_wheel]
55
#python-tag = py3

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ def has_ext_modules(foo):
217217
return True
218218

219219
# define dependencies
220-
dill_version = 'dill>=0.3.9'
220+
dill_version = 'dill>=0.4.0'
221221

222222
def run_setup(with_extensions=True):
223223
extensions = []

version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# License: 3-clause BSD. The full license text is available at:
66
# - https://github.com/uqfoundation/multiprocess/blob/master/LICENSE
77

8-
__version__ = '0.70.18.dev0'
8+
__version__ = '0.70.18'#.dev0'
99
__author__ = 'Mike McKerns'
1010
__contact__ = '[email protected]'
1111

0 commit comments

Comments
 (0)