Skip to content

Commit 7660975

Browse files
authored
Merge pull request pywren#94 from pywren/use-multiprocessing
switch to multiprocessing
2 parents 2eeff66 + dcb43e8 commit 7660975

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pywren/ec2_standalone_files/ec2standalone.cloudinit.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ runcmd:
2020
- [ sudo, -Hu, ec2-user, sh, -c, "chmod +x /tmp/miniconda.sh"]
2121
- [ sudo, -Hu, ec2-user, sh, -c, "/tmp/miniconda.sh -b -p /home/ec2-user/anaconda"]
2222
- [ sudo, -Hu, ec2-user, sh, -c, "/home/ec2-user/anaconda/bin/conda install -q -y numpy boto3 boto"]
23-
- [ sudo, -Hu, ec2-user, sh, -c, "/home/ec2-user/anaconda/bin/pip install multiprocess supervisor"]
23+
- [ sudo, -Hu, ec2-user, sh, -c, "/home/ec2-user/anaconda/bin/pip install supervisor"]
2424
- [ sudo, -Hu, ec2-user, sh, -c, "/home/ec2-user/anaconda/bin/pip install git+https://github.com/ericmjonas/watchtower.git"]
2525
- [ sudo, -Hu, ec2-user, sh, -c, "git clone https://github.com/ericmjonas/pywren.git /home/ec2-user/pywren"]
2626
- [ sudo, -Hu, ec2-user, sh, -c, "git -C /home/ec2-user/pywren fetch origin refs/pull/*/head:refs/remotes/origin/pr/*"]

pywren/scripts/standalone.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import io
1212
import time
1313
import botocore
14-
from multiprocess import Process
14+
from multiprocessing import Process
1515
from pywren import wrenhandler
1616
import logging
1717
import watchtower

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
packages=find_packages(),
2121
install_requires=[
2222
'numpy', 'Click', 'boto3', 'cloudpickle', 'PyYAML',
23-
'enum34', 'flaky', 'glob2', 'multiprocess',
23+
'enum34', 'flaky', 'glob2',
2424
'watchtower', 'tblib' # it's nuts that we need both botos
2525
],
2626
entry_points =

0 commit comments

Comments
 (0)