Skip to content

Commit

Permalink
Merge pull request #142 from pywren/bad-dependency
Browse files Browse the repository at this point in the history
Remove cloudpickle dependency and use local cloudpickle.
  • Loading branch information
shivaram committed Jun 15, 2017
2 parents dc38c87 + dd9f7ac commit 3d14c30
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions pywren/serialize/cloudpickle/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
from __future__ import absolute_import
import sys

from cloudpickle.cloudpickle import *
if sys.version_info > (3, 0):
from .cloudpickle import *
else:
from cloudpickle import *

__version__ = '0.2.2'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
author_email='jonas@ericjonas.com',
packages=find_packages(),
install_requires=[
'numpy', 'Click', 'boto3', 'cloudpickle', 'PyYAML',
'numpy', 'Click', 'boto3', 'PyYAML',
'enum34', 'flaky', 'glob2',
'watchtower', 'tblib' # it's nuts that we need both botos
],
Expand Down

0 comments on commit 3d14c30

Please sign in to comment.