Skip to content

Commit cf3d8dd

Browse files
committed
tag: 0.3.4
1 parent 26b537e commit cf3d8dd

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,18 +36,18 @@ matrix:
3636
env:
3737
- MULTIPROCESS="true"
3838

39-
- python: 'pypy3.10-7.3.18'
39+
- python: 'pypy3.10-7.3.19'
4040
env:
4141
- MULTIPROCESS="true"
4242

43-
- python: 'pypy3.11-7.3.18'
43+
- python: 'pypy3.11-7.3.19'
4444
env:
4545
- MULTIPROCESS="true"
4646

4747
allow_failures:
4848
- python: '3.14-dev' # CI missing
49-
- python: 'pypy3.10-7.3.18' # CI missing
50-
- python: 'pypy3.11-7.3.18' # CI missing
49+
- python: 'pypy3.10-7.3.19' # CI missing
50+
- python: 'pypy3.11-7.3.19' # CI missing
5151
fast_finish: true
5252

5353
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.5**
141-
* ``dill``, **>=0.3.9**
142-
* ``ppft``, **>=1.7.6.9**
143-
* ``multiprocess``, **>=0.70.17**
140+
* ``pox``, **>=0.3.6**
141+
* ``dill``, **>=0.4.0**
142+
* ``ppft``, **>=1.7.7**
143+
* ``multiprocess``, **>=0.70.18**
144144

145145

146146
More Information

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[egg_info]
2-
tag_build = .dev0
2+
#tag_build = .dev0
33

44
[bdist_wheel]
55
#python-tag = py3

setup.py

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

9292
# define dependencies
93-
ppft_version = 'ppft>=1.7.6.9'
94-
dill_version = 'dill>=0.3.9'
95-
pox_version = 'pox>=0.3.5'
96-
mp_version = 'multiprocess>=0.70.17'
93+
ppft_version = 'ppft>=1.7.7'
94+
dill_version = 'dill>=0.4.0'
95+
pox_version = 'pox>=0.3.6'
96+
mp_version = 'multiprocess>=0.70.18'
9797
pyina_version = 'pyina>=0.3.0'
9898
mystic_version = 'mystic>=0.4.3'
9999
# 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.4.dev0'
8+
__version__ = '0.3.4'#.dev0'
99
__author__ = 'Mike McKerns'
1010
__contact__ = 'mmckerns@uqfoundation.org'
1111

0 commit comments

Comments
 (0)