Skip to content

Commit

Permalink
tag: 0.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mmckerns committed Sep 30, 2024
1 parent 060697f commit e6ade89
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,15 +128,15 @@ Requirements
* ``numpy``, **>=1.0**
* ``sympy``, **>=0.6.7**
* ``mpmath``, **>=0.19**
* ``dill``, **>=0.3.8**
* ``klepto``, **>=0.2.5**
* ``dill``, **>=0.3.9**
* ``klepto``, **>=0.2.6**

Optional requirements:

* ``matplotlib``, **>=0.91**
* ``scipy``, **>=0.6.0**
* ``pathos``, **>=0.3.2**
* ``pyina``, **>=0.2.9**
* ``pathos``, **>=0.3.3**
* ``pyina``, **>=0.3.0**


More Information
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[egg_info]
tag_build = .dev0
#tag_build = .dev0

[bdist_wheel]
#python-tag = py3
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,10 @@ def has_ext_modules(foo):
return True

# define dependencies
dill_version = 'dill>=0.3.8'
klepto_version = 'klepto>=0.2.5'
pathos_version = 'pathos>=0.3.2'
pyina_version = 'pyina>=0.2.9'
dill_version = 'dill>=0.3.9'
klepto_version = 'klepto>=0.2.6'
pathos_version = 'pathos>=0.3.3'
pyina_version = 'pyina>=0.3.0'
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'
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.3.dev0'
__version__ = '0.4.3'#.dev0'
__author__ = 'Mike McKerns'
__contact__ = '[email protected]'

Expand Down

0 comments on commit e6ade89

Please sign in to comment.