From 241d0fec00a92bdf56b3fb47a94454b02fcbacbc Mon Sep 17 00:00:00 2001 From: mmckerns Date: Sun, 23 Jul 2023 14:31:19 -0400 Subject: [PATCH] tag: mystic-0.4.1 --- README.md | 8 ++++---- setup.cfg | 2 +- setup.py | 8 ++++---- version.py | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ec862b76..927d3194 100644 --- a/README.md +++ b/README.md @@ -128,15 +128,15 @@ Requirements * ``numpy``, **>=1.0** * ``sympy``, **>=0.6.7** * ``mpmath``, **>=0.19** -* ``dill``, **>=0.3.6** -* ``klepto``, **>=0.2.3** +* ``dill``, **>=0.3.7** +* ``klepto``, **>=0.2.4** Optional requirements: * ``matplotlib``, **>=0.91** * ``scipy``, **>=0.6.0** -* ``pathos``, **>=0.3.0** -* ``pyina``, **>=0.2.7** +* ``pathos``, **>=0.3.1** +* ``pyina``, **>=0.2.8** More Information diff --git a/setup.cfg b/setup.cfg index 80f13e7f..caaa2cd0 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 ccf65bf6..c7fbc45a 100644 --- a/setup.py +++ b/setup.py @@ -94,10 +94,10 @@ def has_ext_modules(foo): return True # define dependencies -dill_version = 'dill>=0.3.6' -klepto_version = 'klepto>=0.2.3' -pathos_version = 'pathos>=0.3.0' -pyina_version = 'pyina>=0.2.7' +dill_version = 'dill>=0.3.7' +klepto_version = 'klepto>=0.2.4' +pathos_version = 'pathos>=0.3.1' +pyina_version = 'pyina>=0.2.8' cython_version = 'cython>=0.29.30' #XXX: required to build numpy from source numpy_version = 'numpy>=1.0' sympy_version = 'sympy>=0.6.7'#, <0.7.4' diff --git a/version.py b/version.py index f8f8d8ae..6b400cef 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/mystic/blob/master/LICENSE -__version__ = '0.4.1.dev0' +__version__ = '0.4.1' __author__ = 'Mike McKerns' __contact__ = 'mmckerns@uqfoundation.org'