Skip to content

Commit

Permalink
tag: 0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mmckerns committed Jan 28, 2024
1 parent 018c356 commit 9a49031
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ matrix:
- python: 'pypy3.8-7.3.9' # at 7.3.11
env:

- python: 'pypy3.9-7.3.9' # at 7.3.13
- python: 'pypy3.9-7.3.9' # at 7.3.15
env:

- python: 'pypy3.10-7.3.13'
- python: 'pypy3.10-7.3.15'
env:

allow_failures:
- python: '3.13-dev'
- python: 'pypy3.10-7.3.13' # CI missing
- python: 'pypy3.10-7.3.15' # CI missing
fast_finish: true

cache:
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,14 +128,14 @@ Requirements
* ``numpy``, **>=1.0**
* ``sympy``, **>=0.6.7**
* ``mpmath``, **>=0.19**
* ``dill``, **>=0.3.7**
* ``klepto``, **>=0.2.4**
* ``dill``, **>=0.3.8**
* ``klepto``, **>=0.2.5**

Optional requirements:

* ``matplotlib``, **>=0.91**
* ``scipy``, **>=0.6.0**
* ``pathos``, **>=0.3.1**
* ``pathos``, **>=0.3.2**
* ``pyina``, **>=0.2.8**


Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[egg_info]
tag_build = .dev0
#tag_build = .dev0

[bdist_wheel]
#python-tag = py3
#plat-name = manylinux_2_24_x86_64
#plat-name = manylinux_2_28_x86_64

[sdist]
#formats=zip,gztar
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,9 @@ def has_ext_modules(foo):
return True

# define dependencies
dill_version = 'dill>=0.3.7'
klepto_version = 'klepto>=0.2.4'
pathos_version = 'pathos>=0.3.1'
dill_version = 'dill>=0.3.8'
klepto_version = 'klepto>=0.2.5'
pathos_version = 'pathos>=0.3.2'
pyina_version = 'pyina>=0.2.8'
cython_version = 'cython>=0.29.30' #XXX: required to build numpy from source
numpy_version = 'numpy>=1.0'
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.2.dev0'
__version__ = '0.4.2'#.dev0'
__author__ = 'Mike McKerns'
__contact__ = '[email protected]'

Expand Down

0 comments on commit 9a49031

Please sign in to comment.