diff --git a/README.md b/README.md index c73f879..2b8ba6d 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ Requirements * ``python`` (or ``pypy``), **>=3.7** * ``setuptools``, **>=42** -* ``dill``, **>=0.3.5.1** +* ``dill``, **>=0.3.6** Basic Usage diff --git a/setup.cfg b/setup.cfg index 8c8d4a6..8a144c2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [egg_info] -tag_build = .dev0 +#tag_build = .dev0 [bdist_wheel] #python-tag = py3 diff --git a/setup.py b/setup.py index 5b6e2be..cd88380 100644 --- a/setup.py +++ b/setup.py @@ -217,7 +217,7 @@ def has_ext_modules(foo): return True # define dependencies -dill_version = 'dill>=0.3.5.1' +dill_version = 'dill>=0.3.6' def run_setup(with_extensions=True): extensions = [] @@ -282,7 +282,7 @@ def run_setup(with_extensions=True): if has_setuptools: setup_kwds.update( zip_safe=False, - # distclass=BinaryDistribution, + distclass=BinaryDistribution, install_requires=depend, # extras_require=extras, ) diff --git a/version.py b/version.py index e43be6d..aa20b86 100644 --- a/version.py +++ b/version.py @@ -5,7 +5,7 @@ # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/multiprocess/blob/master/LICENSE -__version__ = '0.70.14.dev0' +__version__ = '0.70.14' __author__ = 'Mike McKerns' __contact__ = 'mmckerns@uqfoundation.org'