Skip to content

Commit

Permalink
bumping to multiprocess-0.70.12
Browse files Browse the repository at this point in the history
  • Loading branch information
mmckerns committed Jun 14, 2021
1 parent 2ef2560 commit 6a750d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@
- ``dill``, **version >= 0.3.4**
- ``pox``, **version >= 0.3.0**
- ``ppft``, **version >= 1.6.6.4**
- ``multiprocess``, **version >= 0.70.11.1**
- ``multiprocess``, **version >= 0.70.12**
Optional requirements:
Expand Down Expand Up @@ -373,15 +373,15 @@ def write_info_py(filename='pathos/info.py'):
mp_version = ''
else: raise AttributeError('multiprocess')
except Exception:
mp_version = '>=0.70.11.1' # 0.70a1 py25-py33, 0.52 on py25, None on py34
mp_version = '>=0.70.12' # 0.70a1 py25-py33, 0.52 on py25, None on py34
processing_version = ''
'''

# add dependencies
ppft_version = '>=1.6.6.4'
dill_version = '>=0.3.4'
pox_version = '>=0.3.0'
mp_version = '>=0.70.11.1' if version_info >= (2,6) else '>=0.52.0'
mp_version = '>=0.70.12' if version_info >= (2,6) else '>=0.52.0'
pyina_version = '>=0.2.4'
rpyc_version = '>=3.0.6'
deps = [ppft_version, dill_version, pox_version]
Expand Down

0 comments on commit 6a750d4

Please sign in to comment.