Skip to content

Commit 2884be0

Browse files
committed
tag: 0.3.2
1 parent 87501e8 commit 2884be0

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,17 @@ matrix:
2727
env:
2828
- MULTIPROCESS="true"
2929

30-
- python: 'pypy3.9-7.3.9' # at 7.3.13
30+
- python: 'pypy3.9-7.3.9' # at 7.3.15
3131
env:
3232
- MULTIPROCESS="true"
3333

34-
- python: 'pypy3.10-7.3.13'
34+
- python: 'pypy3.10-7.3.15'
3535
env:
3636
- MULTIPROCESS="true"
3737

3838
allow_failures:
3939
- python: '3.13-dev'
40-
- python: 'pypy3.10-7.3.13' # CI missing
40+
- python: 'pypy3.10-7.3.15' # CI missing
4141
fast_finish: true
4242

4343
cache:

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,10 +137,10 @@ Requirements
137137

138138
* ``python`` (or ``pypy``), **>=3.8**
139139
* ``setuptools``, **>=42**
140-
* ``pox``, **>=0.3.3**
141-
* ``dill``, **>=0.3.7**
142-
* ``ppft``, **>=1.7.6.7**
143-
* ``multiprocess``, **>=0.70.15**
140+
* ``pox``, **>=0.3.4**
141+
* ``dill``, **>=0.3.8**
142+
* ``ppft``, **>=1.7.6.8**
143+
* ``multiprocess``, **>=0.70.16**
144144

145145

146146
More Information

setup.cfg

Lines changed: 2 additions & 2 deletions
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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,10 @@ def has_ext_modules(foo):
8989
return True
9090

9191
# define dependencies
92-
ppft_version = 'ppft>=1.7.6.7'
93-
dill_version = 'dill>=0.3.7'
94-
pox_version = 'pox>=0.3.3'
95-
mp_version = 'multiprocess>=0.70.15'
92+
ppft_version = 'ppft>=1.7.6.8'
93+
dill_version = 'dill>=0.3.8'
94+
pox_version = 'pox>=0.3.4'
95+
mp_version = 'multiprocess>=0.70.16'
9696
pyina_version = 'pyina>=0.2.7'
9797
mystic_version = 'mystic>=0.4.0'
9898
# add dependencies

version.py

Lines changed: 1 addition & 1 deletion
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/pathos/blob/master/LICENSE
77

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

0 commit comments

Comments
 (0)