From c629452ee3d1fc377fb8938463aafcfe81c2f4bf Mon Sep 17 00:00:00 2001 From: mmckerns Date: Mon, 30 Sep 2024 15:50:27 -0400 Subject: [PATCH] tag: 0.3.0 --- README.md | 6 +++--- setup.cfg | 2 +- setup.py | 6 +++--- version.py | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 86eb9a6..6b07983 100644 --- a/README.md +++ b/README.md @@ -84,9 +84,9 @@ Requirements * ``cython``, **>=0.29.30** * ``numpy``, **>=1.0** * ``mpi4py``, **>=1.3** -* ``dill``, **>=0.3.8** -* ``pox``, **>=0.3.4** -* ``pathos``, **>=0.3.2** +* ``dill``, **>=0.3.9** +* ``pox``, **>=0.3.5** +* ``pathos``, **>=0.3.3** More Information diff --git a/setup.cfg b/setup.cfg index 4fb6061..9465eab 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 3ffd3ea..408d33d 100644 --- a/setup.py +++ b/setup.py @@ -104,9 +104,9 @@ def has_ext_modules(foo): return True # define dependencies -dill_version = 'dill>=0.3.8' -pox_version = 'pox>=0.3.4' -pathos_version = 'pathos>=0.3.2' +dill_version = 'dill>=0.3.9' +pox_version = 'pox>=0.3.5' +pathos_version = 'pathos>=0.3.3' mystic_version = 'mystic>=0.4.2' cython_version = 'cython>=0.29.30' #XXX: required to build numpy from source numpy_version = 'numpy>=1.0' diff --git a/version.py b/version.py index e876a7f..28fb483 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/pyina/blob/master/LICENSE -__version__ = '0.3.0.dev0' +__version__ = '0.3.0'#.dev0' __author__ = 'Mike McKerns' __contact__ = 'mmckerns@uqfoundation.org'