Skip to content

Commit

Permalink
bumping to multiprocess-0.70.11
Browse files Browse the repository at this point in the history
  • Loading branch information
mmckerns committed Nov 2, 2020
1 parent 3ce5229 commit 7c3bbbd
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.3**
- ``pox``, **version >= 0.2.9**
- ``ppft``, **version >= 1.6.6.3**
- ``multiprocess``, **version >= 0.70.10**
- ``multiprocess``, **version >= 0.70.11**
Optional requirements:
Expand Down Expand Up @@ -368,15 +368,15 @@ def write_info_py(filename='pathos/info.py'):
mp_version = ''
else: raise AttributeError('multiprocess')
except Exception:
mp_version = '>=0.70.10' # 0.70a1 py25-py33, 0.52 on py25, None on py34
mp_version = '>=0.70.11' # 0.70a1 py25-py33, 0.52 on py25, None on py34
processing_version = ''
'''

# add dependencies
ppft_version = '>=1.6.6.3'
dill_version = '>=0.3.3'
pox_version = '>=0.2.9'
mp_version = '>=0.70.10' if version_info >= (2,6) else '>=0.52.0'
mp_version = '>=0.70.11' if version_info >= (2,6) else '>=0.52.0'
pyina_version = '>=0.2.3'
rpyc_version = '>=3.0.6'
deps = [ppft_version, dill_version, pox_version]
Expand Down

0 comments on commit 7c3bbbd

Please sign in to comment.