Skip to content

Commit 9a49031

Browse files
committed
tag: 0.4.2
1 parent 018c356 commit 9a49031

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.travis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ matrix:
3131
- python: 'pypy3.8-7.3.9' # at 7.3.11
3232
env:
3333

34-
- python: 'pypy3.9-7.3.9' # at 7.3.13
34+
- python: 'pypy3.9-7.3.9' # at 7.3.15
3535
env:
3636

37-
- python: 'pypy3.10-7.3.13'
37+
- python: 'pypy3.10-7.3.15'
3838
env:
3939

4040
allow_failures:
4141
- python: '3.13-dev'
42-
- python: 'pypy3.10-7.3.13' # CI missing
42+
- python: 'pypy3.10-7.3.15' # CI missing
4343
fast_finish: true
4444

4545
cache:

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -128,14 +128,14 @@ Requirements
128128
* ``numpy``, **>=1.0**
129129
* ``sympy``, **>=0.6.7**
130130
* ``mpmath``, **>=0.19**
131-
* ``dill``, **>=0.3.7**
132-
* ``klepto``, **>=0.2.4**
131+
* ``dill``, **>=0.3.8**
132+
* ``klepto``, **>=0.2.5**
133133

134134
Optional requirements:
135135

136136
* ``matplotlib``, **>=0.91**
137137
* ``scipy``, **>=0.6.0**
138-
* ``pathos``, **>=0.3.1**
138+
* ``pathos``, **>=0.3.2**
139139
* ``pyina``, **>=0.2.8**
140140

141141

setup.cfg

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[egg_info]
2-
tag_build = .dev0
2+
#tag_build = .dev0
33

44
[bdist_wheel]
55
#python-tag = py3
6-
#plat-name = manylinux_2_24_x86_64
6+
#plat-name = manylinux_2_28_x86_64
77

88
[sdist]
99
#formats=zip,gztar

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,9 @@ def has_ext_modules(foo):
9494
return True
9595

9696
# define dependencies
97-
dill_version = 'dill>=0.3.7'
98-
klepto_version = 'klepto>=0.2.4'
99-
pathos_version = 'pathos>=0.3.1'
97+
dill_version = 'dill>=0.3.8'
98+
klepto_version = 'klepto>=0.2.5'
99+
pathos_version = 'pathos>=0.3.2'
100100
pyina_version = 'pyina>=0.2.8'
101101
cython_version = 'cython>=0.29.30' #XXX: required to build numpy from source
102102
numpy_version = 'numpy>=1.0'

version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# License: 3-clause BSD. The full license text is available at:
66
# - https://github.com/uqfoundation/mystic/blob/master/LICENSE
77

8-
__version__ = '0.4.2.dev0'
8+
__version__ = '0.4.2'#.dev0'
99
__author__ = 'Mike McKerns'
1010
__contact__ = '[email protected]'
1111

0 commit comments

Comments
 (0)